deploy-stack 0.17.9 → 0.17.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/commands/init.js +3 -1
package/package.json
CHANGED
package/src/commands/init.js
CHANGED
|
@@ -270,7 +270,9 @@ export async function mainStack({ isHeadless = false, headlessOptions = {} } = {
|
|
|
270
270
|
|
|
271
271
|
// 9. Output
|
|
272
272
|
let frameworkWarnings = '';
|
|
273
|
-
|
|
273
|
+
const isPreconfigured = process.argv.includes('--preconfigured');
|
|
274
|
+
|
|
275
|
+
if (!isPreconfigured && !(config.framework === 'static' && detectedFramework?.buildDir)) {
|
|
274
276
|
frameworkWarnings = getFrameworkWarning(config.framework);
|
|
275
277
|
}
|
|
276
278
|
|