@vc-shell/create-vc-app 2.0.0-alpha.29 → 2.0.0-alpha.30

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,9 @@
1
+ # [2.0.0-alpha.30](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.29...v2.0.0-alpha.30) (2026-03-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **cli:** remove beforeEnter guard from tenant route templates, format responsive-composable transform ([3752273](https://github.com/VirtoCommerce/vc-shell/commit/37522732b789316a92c4c958c395c8f3fbf9e0ea))
1
7
  # [2.0.0-alpha.29](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.28...v2.0.0-alpha.29) (2026-03-26)
2
8
 
3
9
  **Note:** Version bump only for package @vc-shell/create-vc-app
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@ import { fileURLToPath as B } from "node:url";
7
7
  import A from "prompts";
8
8
  import r from "node:fs";
9
9
  import T from "ejs";
10
- const F = "2.0.0-alpha.29", O = {
10
+ const F = "2.0.0-alpha.30", O = {
11
11
  version: F
12
12
  };
13
13
  function h(e) {
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "devDependencies": {
12
12
  "@types/node": "^20.10.5",
13
- "@vc-shell/ts-config": "^2.0.0-alpha.29",
13
+ "@vc-shell/ts-config": "^2.0.0-alpha.30",
14
14
  "cross-env": "^7.0.3",
15
15
  "sass": "^1.87.0",
16
16
  "typescript": "^5.8.3",
@@ -18,8 +18,8 @@
18
18
  "vue-tsc": "^3.2.5"
19
19
  },
20
20
  "dependencies": {
21
- "@vc-shell/config-generator": "^2.0.0-alpha.29",
22
- "@vc-shell/framework": "^2.0.0-alpha.29",
21
+ "@vc-shell/config-generator": "^2.0.0-alpha.30",
22
+ "@vc-shell/framework": "^2.0.0-alpha.30",
23
23
  "vue": "^3.5.30",
24
24
  "vue-router": "^5.0.3"
25
25
  }
@@ -22,8 +22,8 @@
22
22
  "@types/node": "^20.10.5",
23
23
  "@typescript-eslint/eslint-plugin": "^7.4.0",
24
24
  "@typescript-eslint/parser": "^7.4.0",
25
- "@vc-shell/api-client-generator": "^2.0.0-alpha.29",
26
- "@vc-shell/ts-config": "^2.0.0-alpha.29",
25
+ "@vc-shell/api-client-generator": "^2.0.0-alpha.30",
26
+ "@vc-shell/ts-config": "^2.0.0-alpha.30",
27
27
  "@vitejs/plugin-vue": "^5.2.3",
28
28
  "@vue/eslint-config-prettier": "^9.0.0",
29
29
  "@vue/eslint-config-typescript": "^13.0.0",
@@ -51,8 +51,8 @@
51
51
  "vue-tsc": "^3.2.5"
52
52
  },
53
53
  "dependencies": {
54
- "@vc-shell/config-generator": "^2.0.0-alpha.29",
55
- "@vc-shell/framework": "^2.0.0-alpha.29",
54
+ "@vc-shell/config-generator": "^2.0.0-alpha.30",
55
+ "@vc-shell/framework": "^2.0.0-alpha.30",
56
56
  "@vueuse/core": "^10.7.1",
57
57
  "@vueuse/integrations": "^10.7.1",
58
58
  "vee-validate": "^4.12.4",
@@ -43,15 +43,6 @@ export const routes: RouteRecordRaw[] = [
43
43
  }),
44
44
  },
45
45
  ],
46
- <% if (tenantRoutes) { %>
47
- beforeEnter: (to) => {
48
- const { tenantId } = to.params;
49
- if (!tenantId || new RegExp(tenantIdRegex).test(tenantId as string)) {
50
- return true;
51
- }
52
- return { path: "/" };
53
- },
54
- <% } %>
55
46
  },
56
47
  {
57
48
  name: "Login",
@@ -22,8 +22,8 @@
22
22
  "@types/node": "^20.10.5",
23
23
  "@typescript-eslint/eslint-plugin": "^8.43.0",
24
24
  "@typescript-eslint/parser": "^8.43.0",
25
- "@vc-shell/api-client-generator": "^2.0.0-alpha.29",
26
- "@vc-shell/ts-config": "^2.0.0-alpha.29",
25
+ "@vc-shell/api-client-generator": "^2.0.0-alpha.30",
26
+ "@vc-shell/ts-config": "^2.0.0-alpha.30",
27
27
  "@vitejs/plugin-vue": "^5.2.3",
28
28
  "@vue/eslint-config-prettier": "^10.2.0",
29
29
  "@vue/eslint-config-typescript": "^14.6.0",
@@ -51,8 +51,8 @@
51
51
  "vue-tsc": "^3.2.5"
52
52
  },
53
53
  "dependencies": {
54
- "@vc-shell/config-generator": "^2.0.0-alpha.29",
55
- "@vc-shell/framework": "^2.0.0-alpha.29",
54
+ "@vc-shell/config-generator": "^2.0.0-alpha.30",
55
+ "@vc-shell/framework": "^2.0.0-alpha.30",
56
56
  "@vueuse/core": "^10.7.1",
57
57
  "@vueuse/integrations": "^10.7.1",
58
58
  "vee-validate": "^4.12.4",
@@ -39,15 +39,6 @@ export const routes: RouteRecordRaw[] = [
39
39
  },
40
40
  <% } %>
41
41
  ],
42
- <% if (tenantRoutes) { %>
43
- beforeEnter: (to) => {
44
- const { tenantId } = to.params;
45
- if (!tenantId || new RegExp(tenantIdRegex).test(tenantId as string)) {
46
- return true;
47
- }
48
- return { path: "/" };
49
- },
50
- <% } %>
51
42
  },
52
43
  {
53
44
  name: "Login",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vc-shell/create-vc-app",
3
3
  "description": "Application scaffolding",
4
- "version": "2.0.0-alpha.29",
4
+ "version": "2.0.0-alpha.30",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.js",
7
7
  "files": [
@@ -16,7 +16,7 @@
16
16
  "devDependencies": {
17
17
  "@types/ejs": "^3.1.5",
18
18
  "@types/prompts": "^2.4.4",
19
- "@vc-shell/ts-config": "2.0.0-alpha.29",
19
+ "@vc-shell/ts-config": "2.0.0-alpha.30",
20
20
  "copyfiles": "^2.4.1",
21
21
  "cross-env": "^7.0.3",
22
22
  "shx": "^0.3.4",