@vc-shell/config-generator 1.1.0-alpha.8 → 1.1.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/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ # [1.1.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.0-alpha.2...v1.1.0) (2025-04-29)
2
+
3
+
4
+ ### Features
5
+
6
+ * redesign alpha4 wip ([ac48f52](https://github.com/VirtoCommerce/vc-shell/commit/ac48f526f61e85518a238e1e6b49047ff3fcc786))
7
+ * redesign alpha5 ([ac430b8](https://github.com/VirtoCommerce/vc-shell/commit/ac430b80f684d3b920c35778a83c33ec387b2484))
8
+
9
+
10
+
11
+ # [1.1.0-alpha.11](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.0-alpha.2...v1.1.0-alpha.11) (2025-04-29)
12
+
13
+
14
+ ### Features
15
+
16
+ * redesign alpha4 wip ([ac48f52](https://github.com/VirtoCommerce/vc-shell/commit/ac48f526f61e85518a238e1e6b49047ff3fcc786))
17
+ * redesign alpha5 ([ac430b8](https://github.com/VirtoCommerce/vc-shell/commit/ac430b80f684d3b920c35778a83c33ec387b2484))
18
+
19
+
20
+
1
21
  ## [v1.1.0-alpha.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.340...vv1.1.0-alpha.2) (2025-02-25)
2
22
 
3
23
 
@@ -138,8 +138,8 @@ export default defineConfig({
138
138
  output: {
139
139
  entryFileNames: `[name]` + hash + `.js`,
140
140
  chunkFileNames: `[name]` + hash + `.js`,
141
- }
142
- }
141
+ },
142
+ },
143
143
  },
144
144
  esbuild: {
145
145
  drop: mode === "production" ? ["console", "debugger"] : [],
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vc-shell/config-generator",
3
3
  "description": "Generate Vite configurations",
4
- "version": "1.1.0-alpha.8",
4
+ "version": "1.1.0",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -12,21 +12,20 @@
12
12
  "build": "tsc && tsc-alias"
13
13
  },
14
14
  "dependencies": {
15
- "@vitejs/plugin-vue": "5.0.3",
16
- "vite": "5.3.6",
17
- "vite-plugin-checker": "^0.6.2",
15
+ "@vitejs/plugin-vue": "^5.2.3",
16
+ "vite": "^6.3.3",
17
+ "vite-plugin-checker": "^0.9.1",
18
18
  "vite-plugin-mkcert": "^1.17.1",
19
- "vue": "^3.5.8"
19
+ "vue": "^3.5.13"
20
20
  },
21
21
  "devDependencies": {
22
- "@vc-shell/ts-config": "^1.1.0-alpha.8",
22
+ "@vc-shell/ts-config": "^1.1.0",
23
23
  "http-proxy-middleware": "^3.0.2",
24
24
  "tsc-alias": "^1.8.8",
25
- "typescript": "~5.3.3"
25
+ "typescript": "^5.8.3"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public",
29
29
  "registry": "https://registry.npmjs.org/"
30
- },
31
- "stableVersion": "1.0.340"
30
+ }
32
31
  }