versacompiler 2.3.5 → 2.4.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/README.md +1 -1
- package/dist/compiler/compile.js +205 -205
- package/dist/compiler/integrity-validator.js +9 -11
- package/dist/compiler/minify.js +4 -5
- package/dist/compiler/transforms.js +1 -1
- package/dist/compiler/typescript-error-parser.js +0 -133
- package/dist/compiler/typescript-sync-validator.js +12 -7
- package/dist/compiler/typescript-worker-pool.js +96 -24
- package/dist/compiler/typescript-worker-thread.cjs +9 -6
- package/dist/compiler/vuejs.js +12 -6
- package/dist/hrm/initHRM.js +2 -2
- package/dist/main.js +4 -4
- package/dist/servicios/file-watcher.js +3 -1
- package/dist/servicios/readConfig.js +11 -1
- package/package.json +29 -29
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "versacompiler",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"description": "Una herramienta para compilar y minificar archivos .vue, .js y .ts para proyectos de Vue 3 con soporte para TypeScript.",
|
|
5
5
|
"main": "dist/main.js",
|
|
6
6
|
"bin": {
|
|
@@ -49,63 +49,63 @@
|
|
|
49
49
|
},
|
|
50
50
|
"homepage": "https://github.com/kriollo/versaCompiler#readme",
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@vue/compiler-dom": "^3.5.
|
|
53
|
-
"@vue/reactivity": "^3.5.
|
|
54
|
-
"@vue/runtime-core": "^3.5.
|
|
55
|
-
"@vue/runtime-dom": "^3.5.
|
|
52
|
+
"@vue/compiler-dom": "^3.5.29",
|
|
53
|
+
"@vue/reactivity": "^3.5.29",
|
|
54
|
+
"@vue/runtime-core": "^3.5.29",
|
|
55
|
+
"@vue/runtime-dom": "^3.5.29",
|
|
56
56
|
"browser-sync": "^3.0.4",
|
|
57
57
|
"chalk": "5.6.2",
|
|
58
58
|
"chokidar": "^5.0.0",
|
|
59
|
-
"enhanced-resolve": "^5.
|
|
59
|
+
"enhanced-resolve": "^5.20.0",
|
|
60
60
|
"execa": "^9.6.1",
|
|
61
61
|
"find-root": "^1.1.0",
|
|
62
|
-
"fs-extra": "^11.3.
|
|
62
|
+
"fs-extra": "^11.3.4",
|
|
63
63
|
"get-port": "^7.1.0",
|
|
64
64
|
"minify-html-literals": "^1.3.5",
|
|
65
|
-
"minimatch": "^10.
|
|
66
|
-
"oxc-minify": "^0.
|
|
67
|
-
"oxc-parser": "^0.
|
|
68
|
-
"oxc-transform": "^0.
|
|
65
|
+
"minimatch": "^10.2.4",
|
|
66
|
+
"oxc-minify": "^0.116.0",
|
|
67
|
+
"oxc-parser": "^0.116.0",
|
|
68
|
+
"oxc-transform": "^0.116.0",
|
|
69
69
|
"resolve": "^1.22.11",
|
|
70
70
|
"tsx": "^4.21.0",
|
|
71
71
|
"typescript": "^5.9.3",
|
|
72
|
-
"vue": "3.5.
|
|
72
|
+
"vue": "3.5.29",
|
|
73
73
|
"yargs": "^18.0.0"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@eslint/eslintrc": "^3.3.
|
|
77
|
-
"@tailwindcss/cli": "^4.1
|
|
76
|
+
"@eslint/eslintrc": "^3.3.5",
|
|
77
|
+
"@tailwindcss/cli": "^4.2.1",
|
|
78
78
|
"@types/browser-sync": "^2.29.1",
|
|
79
79
|
"@types/find-root": "^1.1.4",
|
|
80
80
|
"@types/fs-extra": "^11.0.4",
|
|
81
81
|
"@types/jest": "^30.0.0",
|
|
82
82
|
"@types/mocha": "^10.0.10",
|
|
83
|
-
"@types/node": "^25.
|
|
83
|
+
"@types/node": "^25.3.5",
|
|
84
84
|
"@types/resolve": "^1.20.6",
|
|
85
85
|
"@types/yargs": "^17.0.35",
|
|
86
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
87
|
-
"@typescript-eslint/parser": "^8.
|
|
86
|
+
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
|
87
|
+
"@typescript-eslint/parser": "^8.56.1",
|
|
88
88
|
"@vitest/coverage-v8": "^4.0.18",
|
|
89
89
|
"@vitest/ui": "^4.0.18",
|
|
90
|
-
"@vue/eslint-config-typescript": "^14.
|
|
90
|
+
"@vue/eslint-config-typescript": "^14.7.0",
|
|
91
91
|
"@vue/test-utils": "^2.4.6",
|
|
92
92
|
"code-tag": "^1.2.0",
|
|
93
|
-
"eslint": "^
|
|
93
|
+
"eslint": "^10.0.3",
|
|
94
94
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
95
|
-
"eslint-plugin-import": "^
|
|
96
|
-
"eslint-plugin-oxlint": "^1.
|
|
95
|
+
"eslint-plugin-import-x": "^4.16.1",
|
|
96
|
+
"eslint-plugin-oxlint": "^1.51.0",
|
|
97
97
|
"eslint-plugin-promise": "^7.2.1",
|
|
98
|
-
"eslint-plugin-unicorn": "^
|
|
99
|
-
"eslint-plugin-vue": "^10.
|
|
100
|
-
"oxlint": "^1.
|
|
98
|
+
"eslint-plugin-unicorn": "^63.0.0",
|
|
99
|
+
"eslint-plugin-vue": "^10.8.0",
|
|
100
|
+
"oxlint": "^1.51.0",
|
|
101
101
|
"pinia": "^3.0.4",
|
|
102
102
|
"prettier": "3.8.1",
|
|
103
|
-
"rimraf": "^6.1.
|
|
104
|
-
"sweetalert2": "^11.26.
|
|
105
|
-
"tailwindcss": "^4.1
|
|
103
|
+
"rimraf": "^6.1.3",
|
|
104
|
+
"sweetalert2": "^11.26.22",
|
|
105
|
+
"tailwindcss": "^4.2.1",
|
|
106
106
|
"vitest": "^4.0.18",
|
|
107
|
-
"vue-eslint-parser": "^10.
|
|
108
|
-
"vue-router": "^5.0.
|
|
107
|
+
"vue-eslint-parser": "^10.4.0",
|
|
108
|
+
"vue-router": "^5.0.3"
|
|
109
109
|
},
|
|
110
110
|
"packageManager": "pnpm@10.15.0+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b"
|
|
111
111
|
}
|