We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2732313 commit 682d7bbCopy full SHA for 682d7bb
1 file changed
src/load-blueprint-file.js
@@ -3,10 +3,10 @@
3
const fs = require('fs-extra');
4
const path = require('path');
5
6
-async function loadSafeBlueprintFile(cwd) {
+async function loadBlueprintFile(cwd) {
7
try {
8
return await fs.readJson(path.join(cwd, 'config/ember-cli-update.json'));
9
} catch (err) {}
10
}
11
12
-module.exports = loadSafeBlueprintFile;
+module.exports = loadBlueprintFile;
0 commit comments