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 88c6d00 commit a83d7eaCopy full SHA for a83d7ea
index.ts
@@ -252,6 +252,8 @@ async function init() {
252
features: [],
253
e2eFramework: undefined,
254
experimentFeatures: [],
255
+
256
+ // TODO: default to true sometime in the future
257
needsBareboneTemplates: false,
258
}
259
@@ -356,7 +358,7 @@ async function init() {
356
358
357
359
if (argv.bare) {
360
result.needsBareboneTemplates = true
- } else {
361
+ } else if (!isFeatureFlagsUsed) {
362
result.needsBareboneTemplates = await unwrapPrompt(
363
confirm({
364
message: language.needsBareboneTemplates.message,
0 commit comments