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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deploy-stack",
3
- "version": "0.17.9",
3
+ "version": "0.17.10",
4
4
  "description": "Provision production-ready AWS infrastructure and CI/CD pipelines in seconds.",
5
5
  "engines": {
6
6
  "node": ">=18.0.0"
@@ -270,7 +270,9 @@ export async function mainStack({ isHeadless = false, headlessOptions = {} } = {
270
270
 
271
271
  // 9. Output
272
272
  let frameworkWarnings = '';
273
- if (!(config.framework === 'static' && detectedFramework?.buildDir)) {
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