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 75f3b97 commit 94b3c71Copy full SHA for 94b3c71
src/init.js
@@ -92,19 +92,15 @@ module.exports = async function init({
92
blueprint
93
});
94
95
- let init = false;
96
-
97
if (!baseBlueprint) {
98
// for non-existing default blueprints
99
blueprint.isBaseBlueprint = true;
100
- init = true;
101
}
102
103
let result = await (await boilerplateUpdate({
104
endVersion: blueprint.version,
105
resolveConflicts,
106
reset,
107
- init,
108
createCustomDiff: true,
109
customDiffOptions: ({
110
packageJson
@@ -122,7 +118,7 @@ module.exports = async function init({
122
118
123
119
124
120
125
- if (!(reset || init)) {
121
+ if (!reset) {
126
await stageBlueprintFile({
127
cwd,
128
emberCliUpdateJsonPath
0 commit comments