create-vue 3.7.0 → 3.7.1
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/outfile.cjs +2 -2
- package/package.json +1 -1
package/outfile.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
/*! create-vue v3.7.
|
|
2
|
+
/*! create-vue v3.7.1 | MIT */
|
|
3
3
|
var __create = Object.create;
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
5
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -4809,7 +4809,7 @@ async function init() {
|
|
|
4809
4809
|
const { needsE2eTesting } = result;
|
|
4810
4810
|
const needsCypress = argv.cypress || argv.tests || needsE2eTesting === "cypress";
|
|
4811
4811
|
const needsCypressCT = needsCypress && !needsVitest;
|
|
4812
|
-
const needsNightwatch = argv.nightwatch ||
|
|
4812
|
+
const needsNightwatch = argv.nightwatch || needsE2eTesting === "nightwatch";
|
|
4813
4813
|
const needsNightwatchCT = needsNightwatch && !needsVitest;
|
|
4814
4814
|
const needsPlaywright = argv.playwright || needsE2eTesting === "playwright";
|
|
4815
4815
|
const root = path4.join(cwd, targetDir);
|