create-vue 3.17.0 → 3.18.0
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/bundle.js +49 -33
- package/locales/en-US.json +3 -0
- package/locales/fr-FR.json +3 -0
- package/locales/tr-TR.json +3 -0
- package/locales/zh-Hans.json +3 -0
- package/locales/zh-Hant.json +3 -0
- package/package.json +7 -7
- package/template/bare/base/src/App.vue +4 -0
- package/template/bare/typescript/src/App.vue +4 -0
- package/template/base/package.json +7 -4
- package/template/config/cypress/package.json +1 -1
- package/template/config/cypress-ct/package.json +2 -2
- package/template/config/jsx/package.json +3 -3
- package/template/config/nightwatch/package.json +3 -3
- package/template/config/nightwatch-ct/package.json +1 -1
- package/template/config/pinia/package.json +1 -1
- package/template/config/playwright/package.json +1 -1
- package/template/config/prettier/package.json +1 -1
- package/template/config/router/package.json +1 -1
- package/template/config/typescript/package.json +2 -2
- package/template/config/vitest/package.json +1 -1
- package/template/eslint/package.json +1 -1
package/bundle.js
CHANGED
|
@@ -2231,9 +2231,13 @@ function preOrderDirectoryTraverse(dir, dirCallback, fileCallback) {
|
|
|
2231
2231
|
fileCallback(fullpath);
|
|
2232
2232
|
}
|
|
2233
2233
|
}
|
|
2234
|
+
const dotGitDirectoryState = { hasDotGitDirectory: false };
|
|
2234
2235
|
function postOrderDirectoryTraverse(dir, dirCallback, fileCallback) {
|
|
2235
2236
|
for (const filename of fs.readdirSync(dir)) {
|
|
2236
|
-
if (filename === ".git")
|
|
2237
|
+
if (filename === ".git") {
|
|
2238
|
+
dotGitDirectoryState.hasDotGitDirectory = true;
|
|
2239
|
+
continue;
|
|
2240
|
+
}
|
|
2237
2241
|
const fullpath = path.resolve(dir, filename);
|
|
2238
2242
|
if (fs.lstatSync(fullpath).isDirectory()) {
|
|
2239
2243
|
postOrderDirectoryTraverse(fullpath, dirCallback, fileCallback);
|
|
@@ -2435,12 +2439,12 @@ async function getLanguage(localesRoot) {
|
|
|
2435
2439
|
}
|
|
2436
2440
|
|
|
2437
2441
|
//#endregion
|
|
2438
|
-
//#region node_modules/.pnpm/@vue+create-eslint-config@0.
|
|
2442
|
+
//#region node_modules/.pnpm/@vue+create-eslint-config@0.12.0/node_modules/@vue/create-eslint-config/renderEjsFile.js
|
|
2439
2443
|
var import_ejs$1 = __toESM(require_ejs(), 1);
|
|
2440
2444
|
const templates = {
|
|
2441
|
-
"./templates/_editorconfig.ejs": "[*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,vue,css,scss,sass,less,styl}]\ncharset = utf-8\nindent_size = 2\nindent_style = space\ninsert_final_newline = true\ntrim_trailing_whitespace = true\
|
|
2445
|
+
"./templates/_editorconfig.ejs": "[*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,vue,css,scss,sass,less,styl}]\ncharset = utf-8\nindent_size = 2\nindent_style = space\ninsert_final_newline = true\ntrim_trailing_whitespace = true\nend_of_line = lf\nmax_line_length = 100\n",
|
|
2442
2446
|
"./templates/_gitattributes": "* text=auto eol=lf\n",
|
|
2443
|
-
"./templates/_prettierrc.json.ejs": "
|
|
2447
|
+
"./templates/_prettierrc.json.ejs": "<%#\n The default style follows the one used in the vuejs/create-vue repository\n <https://github.com/vuejs/create-vue/blob/main/.prettierrc>\n%>\n{\n \"$schema\": \"https://json.schemastore.org/prettierrc\",\n \"semi\": false,\n \"singleQuote\": true,\n \"printWidth\": 100<%_ if (needsOxlint) { _%>,\n \"plugins\": [\n \"@prettier/plugin-oxc\"\n ]\n <%_ } _%>\n}\n",
|
|
2444
2448
|
"./templates/eslint.config.js.ejs": "<%_ for (const { importer } of configsBeforeVuePlugin) { _%>\n<%- importer %>\n<%_ } _%>\nimport { defineConfig, globalIgnores } from 'eslint/config'\nimport globals from 'globals'\nimport js from '@eslint/js'\nimport pluginVue from 'eslint-plugin-vue'\n<%_ for (const { importer } of configsAfterVuePlugin) { _%>\n<%- importer %>\n<%_ } _%>\n\nexport default defineConfig([\n {\n name: 'app/files-to-lint',\n files: ['**/*.{<%= fileExtensions.join(',') %>}'],\n },\n\n globalIgnores(['**/dist/**', '**/dist-ssr/**', '**/coverage/**']),\n\n {\n languageOptions: {\n globals: {\n ...globals.browser,\n },\n },\n },\n\n<%_ for (const { content } of configsBeforeVuePlugin) { _%>\n <%- content %><%# TODO: auto-indent if content's multi-line %>\n<%_ } _%>\n js.configs.recommended,\n ...pluginVue.configs['flat/essential'],\n<%_ for (const { content } of configsAfterVuePlugin) { _%>\n <%- content %><%# TODO: auto-indent if content's multi-line %>\n<%_ } _%>\n])\n",
|
|
2445
2449
|
"./templates/eslint.config.ts.ejs": "<%_ for (const { importer } of configsBeforeVuePlugin) { _%>\n<%- importer %>\n<%_ } _%>\nimport { globalIgnores } from 'eslint/config'\nimport { defineConfigWithVueTs, vueTsConfigs } from '@vue/eslint-config-typescript'\nimport pluginVue from 'eslint-plugin-vue'\n<%_ for (const { importer } of configsAfterVuePlugin) { _%>\n<%- importer %>\n<%_ } _%>\n\n// To allow more languages other than `ts` in `.vue` files, uncomment the following lines:\n// import { configureVueProject } from '@vue/eslint-config-typescript'\n// configureVueProject({ scriptLangs: ['ts', 'tsx'] })\n// More info at https://github.com/vuejs/eslint-config-typescript/#advanced-setup\n\nexport default defineConfigWithVueTs(\n {\n name: 'app/files-to-lint',\n files: ['**/*.{<%= fileExtensions.join(',') %>}'],\n },\n\n globalIgnores(['**/dist/**', '**/dist-ssr/**', '**/coverage/**']),\n\n<%_ for (const { content } of configsBeforeVuePlugin) { _%>\n <%- content %><%# TODO: auto-indent if content's multi-line %>\n<%_ } _%>\n pluginVue.configs['flat/essential'],\n vueTsConfigs.recommended,\n<%_ for (const { content } of configsAfterVuePlugin) { _%>\n <%- content %><%# TODO: auto-indent if content's multi-line %>\n<%_ } _%>\n)\n"
|
|
2446
2450
|
};
|
|
@@ -2449,9 +2453,9 @@ function renderEjsFile(filePath, data) {
|
|
|
2449
2453
|
}
|
|
2450
2454
|
|
|
2451
2455
|
//#endregion
|
|
2452
|
-
//#region node_modules/.pnpm/@vue+create-eslint-config@0.
|
|
2456
|
+
//#region node_modules/.pnpm/@vue+create-eslint-config@0.12.0/node_modules/@vue/create-eslint-config/package.json
|
|
2453
2457
|
var name$1 = "@vue/create-eslint-config";
|
|
2454
|
-
var version$1 = "0.
|
|
2458
|
+
var version$1 = "0.12.0";
|
|
2455
2459
|
var description$1 = "Utility to setup ESLint in Vue.js projects.";
|
|
2456
2460
|
var type$1 = "module";
|
|
2457
2461
|
var main = "index.js";
|
|
@@ -2484,18 +2488,19 @@ var dependencies = {
|
|
|
2484
2488
|
"kolorist": "^1.8.0"
|
|
2485
2489
|
};
|
|
2486
2490
|
var devDependencies$2 = {
|
|
2487
|
-
"@eslint/js": "^9.
|
|
2488
|
-
"@
|
|
2491
|
+
"@eslint/js": "^9.31.0",
|
|
2492
|
+
"@prettier/plugin-oxc": "^0.0.4",
|
|
2493
|
+
"@types/node": "^22.16.5",
|
|
2489
2494
|
"@vue/eslint-config-prettier": "^10.2.0",
|
|
2490
|
-
"@vue/eslint-config-typescript": "^14.
|
|
2491
|
-
"eslint": "^9.
|
|
2492
|
-
"eslint-plugin-oxlint": "~1.
|
|
2493
|
-
"eslint-plugin-vue": "~10.
|
|
2494
|
-
"globals": "^16.
|
|
2495
|
+
"@vue/eslint-config-typescript": "^14.6.0",
|
|
2496
|
+
"eslint": "^9.31.0",
|
|
2497
|
+
"eslint-plugin-oxlint": "~1.8.0",
|
|
2498
|
+
"eslint-plugin-vue": "~10.3.0",
|
|
2499
|
+
"globals": "^16.3.0",
|
|
2495
2500
|
"jiti": "^2.4.2",
|
|
2496
2501
|
"npm-run-all2": "^8.0.4",
|
|
2497
|
-
"oxlint": "~1.
|
|
2498
|
-
"prettier": "3.
|
|
2502
|
+
"oxlint": "~1.8.0",
|
|
2503
|
+
"prettier": "3.6.2",
|
|
2499
2504
|
"typescript": "~5.8.2"
|
|
2500
2505
|
};
|
|
2501
2506
|
var package_default$2 = {
|
|
@@ -2519,7 +2524,7 @@ var package_default$2 = {
|
|
|
2519
2524
|
};
|
|
2520
2525
|
|
|
2521
2526
|
//#endregion
|
|
2522
|
-
//#region node_modules/.pnpm/@vue+create-eslint-config@0.
|
|
2527
|
+
//#region node_modules/.pnpm/@vue+create-eslint-config@0.12.0/node_modules/@vue/create-eslint-config/index.js
|
|
2523
2528
|
const versionMap = package_default$2.devDependencies;
|
|
2524
2529
|
function createConfig({ styleGuide = "default", hasTypeScript = false, needsPrettier = false, needsOxlint = false, additionalConfigs = [] }) {
|
|
2525
2530
|
const pickDependencies = (keys) => pickKeysFromObject(versionMap, keys);
|
|
@@ -2561,6 +2566,7 @@ function createConfig({ styleGuide = "default", hasTypeScript = false, needsPret
|
|
|
2561
2566
|
});
|
|
2562
2567
|
pkg.scripts.format = "prettier --write src/";
|
|
2563
2568
|
}
|
|
2569
|
+
if (needsOxlint && needsPrettier) additionalConfigs.push({ devDependencies: pickDependencies(["@prettier/plugin-oxc"]) });
|
|
2564
2570
|
const configsBeforeVuePlugin = [], configsAfterVuePlugin = [];
|
|
2565
2571
|
for (const config of additionalConfigs) {
|
|
2566
2572
|
deepMerge(pkg.devDependencies, config.devDependencies ?? {});
|
|
@@ -2569,6 +2575,7 @@ function createConfig({ styleGuide = "default", hasTypeScript = false, needsPret
|
|
|
2569
2575
|
}
|
|
2570
2576
|
const templateData = {
|
|
2571
2577
|
styleGuide,
|
|
2578
|
+
needsOxlint,
|
|
2572
2579
|
needsPrettier,
|
|
2573
2580
|
fileExtensions,
|
|
2574
2581
|
configsBeforeVuePlugin,
|
|
@@ -2578,7 +2585,7 @@ function createConfig({ styleGuide = "default", hasTypeScript = false, needsPret
|
|
|
2578
2585
|
if (hasTypeScript) files$1["eslint.config.ts"] = renderEjsFile("./templates/eslint.config.ts.ejs", templateData);
|
|
2579
2586
|
else files$1["eslint.config.js"] = renderEjsFile("./templates/eslint.config.js.ejs", templateData);
|
|
2580
2587
|
if (needsPrettier) files$1[".prettierrc.json"] = renderEjsFile("./templates/_prettierrc.json.ejs", templateData);
|
|
2581
|
-
|
|
2588
|
+
files$1[".gitattributes"] = renderEjsFile("./templates/_gitattributes", {});
|
|
2582
2589
|
return {
|
|
2583
2590
|
pkg,
|
|
2584
2591
|
files: files$1
|
|
@@ -2618,7 +2625,7 @@ function deepMerge(target, obj) {
|
|
|
2618
2625
|
//#endregion
|
|
2619
2626
|
//#region template/eslint/package.json
|
|
2620
2627
|
var devDependencies$1 = {
|
|
2621
|
-
"@vitest/eslint-plugin": "^1.
|
|
2628
|
+
"@vitest/eslint-plugin": "^1.3.4",
|
|
2622
2629
|
"eslint-plugin-cypress": "^5.1.0",
|
|
2623
2630
|
"eslint-plugin-playwright": "^2.2.0"
|
|
2624
2631
|
};
|
|
@@ -2731,10 +2738,10 @@ function emptyRouterConfig(rootDir, needsTypeScript) {
|
|
|
2731
2738
|
//#endregion
|
|
2732
2739
|
//#region package.json
|
|
2733
2740
|
var name = "create-vue";
|
|
2734
|
-
var version = "3.
|
|
2741
|
+
var version = "3.18.0";
|
|
2735
2742
|
var description = "🛠️ The recommended way to start a Vite-powered Vue project";
|
|
2736
2743
|
var type = "module";
|
|
2737
|
-
var packageManager = "pnpm@10.
|
|
2744
|
+
var packageManager = "pnpm@10.13.1";
|
|
2738
2745
|
var bin = { "create-vue": "bundle.js" };
|
|
2739
2746
|
var files = [
|
|
2740
2747
|
"locales",
|
|
@@ -2742,7 +2749,7 @@ var files = [
|
|
|
2742
2749
|
"template",
|
|
2743
2750
|
"!template/**/node_modules/.bin/*"
|
|
2744
2751
|
];
|
|
2745
|
-
var engines = { "node": "
|
|
2752
|
+
var engines = { "node": "^20.19.0 || >=22.12.0" };
|
|
2746
2753
|
var scripts = {
|
|
2747
2754
|
"prepare": "husky",
|
|
2748
2755
|
"format": "prettier --write .",
|
|
@@ -2768,19 +2775,19 @@ var devDependencies = {
|
|
|
2768
2775
|
"@clack/prompts": "^0.11.0",
|
|
2769
2776
|
"@tsconfig/node22": "^22.0.2",
|
|
2770
2777
|
"@types/eslint": "^9.6.1",
|
|
2771
|
-
"@types/node": "^22.
|
|
2778
|
+
"@types/node": "^22.16.5",
|
|
2772
2779
|
"@types/prompts": "^2.4.9",
|
|
2773
|
-
"@vue/create-eslint-config": "^0.
|
|
2780
|
+
"@vue/create-eslint-config": "^0.12.0",
|
|
2774
2781
|
"@vue/tsconfig": "^0.7.0",
|
|
2775
2782
|
"ejs": "^3.1.10",
|
|
2776
2783
|
"husky": "^9.1.7",
|
|
2777
2784
|
"lint-staged": "^16.1.2",
|
|
2778
2785
|
"picocolors": "^1.1.1",
|
|
2779
|
-
"prettier": "3.
|
|
2780
|
-
"rolldown": "1.0.0-beta.
|
|
2786
|
+
"prettier": "3.6.2",
|
|
2787
|
+
"rolldown": "1.0.0-beta.29",
|
|
2781
2788
|
"rollup-plugin-license": "^3.6.0",
|
|
2782
2789
|
"vitest": "^3.2.4",
|
|
2783
|
-
"zx": "^8.
|
|
2790
|
+
"zx": "^8.7.1"
|
|
2784
2791
|
};
|
|
2785
2792
|
var lint_staged = { "*.{js,ts,vue,json}": ["prettier --write"] };
|
|
2786
2793
|
var publishConfig = {
|
|
@@ -2884,7 +2891,10 @@ function canSkipEmptying(dir) {
|
|
|
2884
2891
|
if (!fs.existsSync(dir)) return true;
|
|
2885
2892
|
const files$1 = fs.readdirSync(dir);
|
|
2886
2893
|
if (files$1.length === 0) return true;
|
|
2887
|
-
if (files$1.length === 1 && files$1[0] === ".git")
|
|
2894
|
+
if (files$1.length === 1 && files$1[0] === ".git") {
|
|
2895
|
+
dotGitDirectoryState.hasDotGitDirectory = true;
|
|
2896
|
+
return true;
|
|
2897
|
+
}
|
|
2888
2898
|
return false;
|
|
2889
2899
|
}
|
|
2890
2900
|
function emptyDir(dir) {
|
|
@@ -2987,7 +2997,8 @@ async function init() {
|
|
|
2987
2997
|
packageName: defaultProjectName,
|
|
2988
2998
|
features: [],
|
|
2989
2999
|
e2eFramework: void 0,
|
|
2990
|
-
experimentFeatures: []
|
|
3000
|
+
experimentFeatures: [],
|
|
3001
|
+
needsBareboneTemplates: false
|
|
2991
3002
|
};
|
|
2992
3003
|
Ie(process.stdout.isTTY && process.stdout.getColorDepth() > 8 ? gradientBanner : defaultBanner);
|
|
2993
3004
|
if (!targetDir) {
|
|
@@ -3049,7 +3060,12 @@ async function init() {
|
|
|
3049
3060
|
required: false
|
|
3050
3061
|
}));
|
|
3051
3062
|
}
|
|
3052
|
-
|
|
3063
|
+
if (argv$1.bare) result.needsBareboneTemplates = true;
|
|
3064
|
+
else if (!isFeatureFlagsUsed) result.needsBareboneTemplates = await unwrapPrompt(ye({
|
|
3065
|
+
message: language.needsBareboneTemplates.message,
|
|
3066
|
+
initialValue: false
|
|
3067
|
+
}));
|
|
3068
|
+
const { features, experimentFeatures, needsBareboneTemplates } = result;
|
|
3053
3069
|
const needsTypeScript = argv$1.ts || argv$1.typescript || features.includes("typescript");
|
|
3054
3070
|
const needsJsx = argv$1.jsx || features.includes("jsx");
|
|
3055
3071
|
const needsRouter = argv$1.router || argv$1["vue-router"] || features.includes("router");
|
|
@@ -3155,7 +3171,7 @@ async function init() {
|
|
|
3155
3171
|
fs.unlinkSync(filepath);
|
|
3156
3172
|
}
|
|
3157
3173
|
});
|
|
3158
|
-
if (
|
|
3174
|
+
if (needsBareboneTemplates) {
|
|
3159
3175
|
trimBoilerplate(root);
|
|
3160
3176
|
render("bare/base");
|
|
3161
3177
|
if (needsTypeScript) render("bare/typescript");
|
|
@@ -3177,7 +3193,7 @@ async function init() {
|
|
|
3177
3193
|
} else preOrderDirectoryTraverse(root, () => {}, (filepath) => {
|
|
3178
3194
|
if (filepath.endsWith(".ts")) fs.unlinkSync(filepath);
|
|
3179
3195
|
});
|
|
3180
|
-
if (
|
|
3196
|
+
if (needsBareboneTemplates) {
|
|
3181
3197
|
removeCSSImport(root, needsTypeScript, needsCypressCT);
|
|
3182
3198
|
if (needsRouter) emptyRouterConfig(root, needsTypeScript);
|
|
3183
3199
|
}
|
|
@@ -3203,9 +3219,9 @@ async function init() {
|
|
|
3203
3219
|
outroMessage += ` ${(0, import_picocolors.bold)((0, import_picocolors.green)(getCommand(packageManager$1, "install")))}\n`;
|
|
3204
3220
|
if (needsPrettier) outroMessage += ` ${(0, import_picocolors.bold)((0, import_picocolors.green)(getCommand(packageManager$1, "format")))}\n`;
|
|
3205
3221
|
outroMessage += ` ${(0, import_picocolors.bold)((0, import_picocolors.green)(getCommand(packageManager$1, "dev")))}\n`;
|
|
3206
|
-
outroMessage += `
|
|
3222
|
+
if (!dotGitDirectoryState.hasDotGitDirectory) outroMessage += `
|
|
3207
3223
|
${(0, import_picocolors.dim)("|")} ${language.infos.optionalGitCommand}
|
|
3208
|
-
|
|
3224
|
+
|
|
3209
3225
|
${(0, import_picocolors.bold)((0, import_picocolors.green)("git init && git add -A && git commit -m \"initial commit\""))}`;
|
|
3210
3226
|
Se(outroMessage);
|
|
3211
3227
|
}
|
package/locales/en-US.json
CHANGED
package/locales/fr-FR.json
CHANGED
|
@@ -72,6 +72,9 @@
|
|
|
72
72
|
"needsRolldownVite": {
|
|
73
73
|
"message": "rolldown-vite (expérimental)"
|
|
74
74
|
},
|
|
75
|
+
"needsBareboneTemplates": {
|
|
76
|
+
"message": "Ignorer tout le code d'exemple et commencer avec un projet Vue vierge\u00a0?"
|
|
77
|
+
},
|
|
75
78
|
"errors": {
|
|
76
79
|
"operationCancelled": "Operation annulée"
|
|
77
80
|
},
|
package/locales/tr-TR.json
CHANGED
package/locales/zh-Hans.json
CHANGED
package/locales/zh-Hant.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-vue",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.18.0",
|
|
4
4
|
"description": "🛠️ The recommended way to start a Vite-powered Vue project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"!template/**/node_modules/.bin/*"
|
|
14
14
|
],
|
|
15
15
|
"engines": {
|
|
16
|
-
"node": "
|
|
16
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
@@ -30,19 +30,19 @@
|
|
|
30
30
|
"@clack/prompts": "^0.11.0",
|
|
31
31
|
"@tsconfig/node22": "^22.0.2",
|
|
32
32
|
"@types/eslint": "^9.6.1",
|
|
33
|
-
"@types/node": "^22.
|
|
33
|
+
"@types/node": "^22.16.5",
|
|
34
34
|
"@types/prompts": "^2.4.9",
|
|
35
|
-
"@vue/create-eslint-config": "^0.
|
|
35
|
+
"@vue/create-eslint-config": "^0.12.0",
|
|
36
36
|
"@vue/tsconfig": "^0.7.0",
|
|
37
37
|
"ejs": "^3.1.10",
|
|
38
38
|
"husky": "^9.1.7",
|
|
39
39
|
"lint-staged": "^16.1.2",
|
|
40
40
|
"picocolors": "^1.1.1",
|
|
41
|
-
"prettier": "3.
|
|
42
|
-
"rolldown": "1.0.0-beta.
|
|
41
|
+
"prettier": "3.6.2",
|
|
42
|
+
"rolldown": "1.0.0-beta.29",
|
|
43
43
|
"rollup-plugin-license": "^3.6.0",
|
|
44
44
|
"vitest": "^3.2.4",
|
|
45
|
-
"zx": "^8.
|
|
45
|
+
"zx": "^8.7.1"
|
|
46
46
|
},
|
|
47
47
|
"lint-staged": {
|
|
48
48
|
"*.{js,ts,vue,json}": [
|
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": true,
|
|
3
3
|
"type": "module",
|
|
4
|
+
"engines": {
|
|
5
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
6
|
+
},
|
|
4
7
|
"scripts": {
|
|
5
8
|
"dev": "vite",
|
|
6
9
|
"build": "vite build",
|
|
7
10
|
"preview": "vite preview"
|
|
8
11
|
},
|
|
9
12
|
"dependencies": {
|
|
10
|
-
"vue": "^3.5.
|
|
13
|
+
"vue": "^3.5.18"
|
|
11
14
|
},
|
|
12
15
|
"devDependencies": {
|
|
13
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
14
|
-
"vite": "^7.0.
|
|
15
|
-
"vite-plugin-vue-devtools": "^
|
|
16
|
+
"@vitejs/plugin-vue": "^6.0.1",
|
|
17
|
+
"vite": "^7.0.6",
|
|
18
|
+
"vite-plugin-vue-devtools": "^8.0.0"
|
|
16
19
|
}
|
|
17
20
|
}
|
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
},
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@nightwatch/vue": "^3.1.2",
|
|
7
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
8
|
-
"chromedriver": "^
|
|
7
|
+
"@vitejs/plugin-vue": "^6.0.1",
|
|
8
|
+
"chromedriver": "^138.0.4",
|
|
9
9
|
"geckodriver": "^5.0.0",
|
|
10
10
|
"nightwatch": "^3.12.2",
|
|
11
11
|
"ts-node": "^10.9.2",
|
|
12
|
-
"vite": "^7.0.
|
|
12
|
+
"vite": "^7.0.6",
|
|
13
13
|
"vite-plugin-nightwatch": "^0.4.6"
|
|
14
14
|
}
|
|
15
15
|
}
|