@vc-shell/create-vc-app 1.1.72 → 1.1.74
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,16 @@
|
|
|
1
|
+
## [1.1.74](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.73...v1.1.74) (2025-09-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## [1.1.73](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.72...v1.1.73) (2025-09-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **create-vc-app:** integrate bootstrap function into main application file ([3eded62](https://github.com/VirtoCommerce/vc-shell/commit/3eded6272e424d8599ab14ec25666d8d8ed92557))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
1
14
|
## [1.1.72](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.71...v1.1.72) (2025-08-25)
|
|
2
15
|
|
|
3
16
|
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import c from "node:path";
|
|
|
6
6
|
import s from "node:fs";
|
|
7
7
|
import { fileURLToPath as Oe } from "node:url";
|
|
8
8
|
import { cwd as Me, exit as Ee, argv as Te } from "node:process";
|
|
9
|
-
const Ue = "1.1.
|
|
9
|
+
const Ue = "1.1.74", I = {
|
|
10
10
|
version: Ue
|
|
11
11
|
};
|
|
12
12
|
var Pe = typeof global == "object" && global && global.Object === Object && global, Le = typeof self == "object" && self && self.Object === Object && self, _e = Pe || Le || Function("return this")(), b = _e.Symbol, K = Object.prototype, ze = K.hasOwnProperty, De = K.toString, $ = b ? b.toStringTag : void 0;
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"@types/node": "^20.10.5",
|
|
24
24
|
"@typescript-eslint/eslint-plugin": "^6.16.0",
|
|
25
25
|
"@typescript-eslint/parser": "^6.16.0",
|
|
26
|
-
"@vc-shell/api-client-generator": "^1.1.
|
|
27
|
-
"@vc-shell/release-config": "^1.1.
|
|
28
|
-
"@vc-shell/ts-config": "^1.1.
|
|
26
|
+
"@vc-shell/api-client-generator": "^1.1.74",
|
|
27
|
+
"@vc-shell/release-config": "^1.1.74",
|
|
28
|
+
"@vc-shell/ts-config": "^1.1.74",
|
|
29
29
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
30
30
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
31
31
|
"@vue/eslint-config-typescript": "^12.0.0",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"vue-tsc": "^2.2.10"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@vc-shell/config-generator": "^1.1.
|
|
57
|
-
"@vc-shell/framework": "^1.1.
|
|
56
|
+
"@vc-shell/config-generator": "^1.1.74",
|
|
57
|
+
"@vc-shell/framework": "^1.1.74",
|
|
58
58
|
"@vueuse/core": "^10.7.1",
|
|
59
59
|
"@vueuse/integrations": "^10.7.1",
|
|
60
60
|
"cross-spawn": "^7.0.3",
|
|
Binary file
|
|
@@ -4,6 +4,7 @@ import { router } from "./router";
|
|
|
4
4
|
import * as locales from "./locales";
|
|
5
5
|
import { RouterView } from "vue-router";
|
|
6
6
|
import {{ModuleNamePascalCase}} from "./modules/{{ModuleName}}";
|
|
7
|
+
import { bootstrap } from "./bootstrap";
|
|
7
8
|
|
|
8
9
|
// Load required CSS
|
|
9
10
|
import "@vc-shell/framework/dist/index.css";
|
|
@@ -32,6 +33,8 @@ async function startApp() {
|
|
|
32
33
|
.use({{ModuleNamePascalCase}}, { router })
|
|
33
34
|
.use(router);
|
|
34
35
|
|
|
36
|
+
bootstrap(app);
|
|
37
|
+
|
|
35
38
|
Object.entries(locales).forEach(([key, message]) => {
|
|
36
39
|
app.config.globalProperties.$mergeLocaleMessage(key, message);
|
|
37
40
|
});
|
|
@@ -5,6 +5,7 @@ import * as locales from "./locales";
|
|
|
5
5
|
import { RouterView } from "vue-router";
|
|
6
6
|
import {{ModuleNamePascalCase}} from "./modules/{{ModuleName}}";
|
|
7
7
|
import SampleModule from "./modules/sample";
|
|
8
|
+
import { bootstrap } from "./bootstrap";
|
|
8
9
|
|
|
9
10
|
// Load required CSS
|
|
10
11
|
import "@vc-shell/framework/dist/index.css";
|
|
@@ -29,6 +30,8 @@ async function startApp() {
|
|
|
29
30
|
.use(SampleModule, { router })
|
|
30
31
|
.use(router);
|
|
31
32
|
|
|
33
|
+
bootstrap(app);
|
|
34
|
+
|
|
32
35
|
Object.entries(locales).forEach(([key, message]) => {
|
|
33
36
|
app.config.globalProperties.$mergeLocaleMessage(key, message);
|
|
34
37
|
});
|
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": "1.1.
|
|
4
|
+
"version": "1.1.74",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": "./dist/index.js",
|
|
7
7
|
"files": [
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@types/prompts": "^2.4.4",
|
|
16
|
-
"@vc-shell/ts-config": "^1.1.
|
|
16
|
+
"@vc-shell/ts-config": "^1.1.74",
|
|
17
17
|
"copyfiles": "^2.4.1",
|
|
18
18
|
"cross-env": "^7.0.3",
|
|
19
19
|
"shx": "^0.3.4",
|