@vc-shell/create-vc-app 2.0.0-alpha.8 → 2.0.0-pr221.637b802
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 +102 -241
- package/README.md +19 -18
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.test.d.ts +2 -0
- package/dist/commands/init.test.d.ts.map +1 -0
- package/dist/engine/codegen.d.ts.map +1 -1
- package/dist/engine/helpers.d.ts +1 -1
- package/dist/engine/helpers.d.ts.map +1 -1
- package/dist/engine/helpers.test.d.ts +2 -0
- package/dist/engine/helpers.test.d.ts.map +1 -0
- package/dist/engine/template.d.ts.map +1 -1
- package/dist/engine/template.test.d.ts +2 -0
- package/dist/engine/template.test.d.ts.map +1 -0
- package/dist/index.js +172 -170
- package/dist/output.d.ts.map +1 -1
- package/dist/templates/dynamic-module/_package.json.ejs +6 -6
- package/dist/templates/dynamic-module/src/modules/index.ts.ejs +8 -5
- package/dist/templates/dynamic-module/tsconfig.json +1 -1
- package/dist/templates/dynamic-module/vite.config.mts.ejs +1 -1
- package/dist/templates/host-app/_package.json.ejs +14 -16
- package/dist/templates/host-app/src/main.ts.ejs +17 -15
- package/dist/templates/host-app/src/pages/App.vue.ejs +4 -1
- package/dist/templates/host-app/src/router/routes.ts.ejs +0 -9
- package/dist/templates/host-app/tsconfig.json +1 -0
- package/dist/templates/host-app/vite.config.mts.ejs +3 -6
- package/dist/templates/module/composables/useDetails.ts.ejs +41 -38
- package/dist/templates/module/index.ts.ejs +11 -8
- package/dist/templates/module/locales/en.json.ejs +33 -22
- package/dist/templates/module/pages/details.vue.ejs +83 -111
- package/dist/templates/module/pages/list.vue.ejs +88 -117
- package/dist/templates/sample-module/index.ts +11 -8
- package/dist/templates/sample-module/pages/details.vue +20 -47
- package/dist/templates/sample-module/pages/list.vue +107 -154
- package/dist/templates/standalone/_package.json.ejs +18 -20
- package/dist/templates/standalone/eslint.config.mjs +31 -0
- package/dist/templates/standalone/src/bootstrap.ts.ejs +5 -5
- package/dist/templates/standalone/src/main.ts.ejs +29 -23
- package/dist/templates/standalone/src/pages/App.vue.ejs +4 -1
- package/dist/templates/standalone/src/router/routes.ts.ejs +0 -9
- package/dist/templates/standalone/tsconfig.json +1 -0
- package/dist/types.d.ts +2 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +4 -3
- package/dist/templates/host-app/src/shims-vue.d.ts +0 -27
- package/dist/templates/host-app/src/vue-i18n.d.ts +0 -10
- package/dist/templates/standalone/_eslintignore +0 -3
- package/dist/templates/standalone/_eslintrc.js +0 -41
- package/dist/templates/standalone/src/shims-vue.d.ts +0 -27
- package/dist/templates/standalone/src/vue-i18n.d.ts +0 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,101 +1,119 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
# [2.0.0-alpha.7](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.6...v2.0.0-alpha.7) (2026-03-11)
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
### Bug Fixes
|
|
9
|
-
|
|
10
|
-
* remove duplicate changelog entries caused by multiline regex bug ([2f27d4c](https://github.com/VirtoCommerce/vc-shell/commit/2f27d4c2ca81452ddc1042af47a4648348e7e323))
|
|
11
|
-
# [2.0.0-alpha.6](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.5...v2.0.0-alpha.6) (2026-03-10)
|
|
12
|
-
|
|
13
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
14
|
-
|
|
15
|
-
# [2.0.0-alpha.5](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.4...v2.0.0-alpha.5) (2026-03-10)
|
|
16
|
-
|
|
17
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
18
|
-
|
|
19
|
-
# [2.0.0-alpha.4](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.3...v2.0.0-alpha.4) (2026-03-10)
|
|
20
|
-
|
|
21
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
22
|
-
|
|
23
|
-
# [2.0.0-alpha.3](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.2...v2.0.0-alpha.3) (2026-03-10)
|
|
24
|
-
|
|
25
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
26
|
-
|
|
27
|
-
# [2.0.0-alpha.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.8...v2.0.0-alpha.2) (2026-03-10)
|
|
28
|
-
|
|
29
|
-
### Code Refactoring
|
|
30
|
-
|
|
31
|
-
- remove unused components and update package resolutions ([26ff398](https://github.com/VirtoCommerce/vc-shell/commit/26ff398739d75b23f7f700542920a117e0022ff3))
|
|
32
|
-
|
|
33
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
34
|
-
|
|
35
|
-
# [2.0.0-alpha.1](https://github.com/VirtoCommerce/vc-shell/compare/v2.0.0-alpha.0...v2.0.0-alpha.1) (2026-03-10)
|
|
36
|
-
|
|
37
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
38
|
-
|
|
39
|
-
# [2.0.0-alpha.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.8...v2.0.0-alpha.0) (2026-03-10)
|
|
3
|
+
# [2.0.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.3...v2.0.0) (2026-04-22)
|
|
40
4
|
|
|
41
5
|
### Features
|
|
42
6
|
|
|
43
|
-
- **create-vc-app:**
|
|
44
|
-
- **
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
- **
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
- **
|
|
53
|
-
|
|
54
|
-
## [1.2.4-beta.8](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.7...v1.2.4-beta.8) (2026-03-04)
|
|
55
|
-
|
|
56
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
57
|
-
|
|
58
|
-
## [1.2.4-beta.7](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.6...v1.2.4-beta.7) (2026-03-04)
|
|
59
|
-
|
|
60
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
61
|
-
|
|
62
|
-
## [1.2.4-beta.6](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.5...v1.2.4-beta.6) (2026-03-04)
|
|
63
|
-
|
|
64
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
65
|
-
|
|
66
|
-
## [1.2.4-beta.5](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.4...v1.2.4-beta.5) (2026-03-04)
|
|
7
|
+
- **create-vc-app:** update blade templates to use useBlade() without boilerplate ([5d1f148](https://github.com/VirtoCommerce/vc-shell/commit/5d1f148720f15512e2db0768d320a70ba417dc3e))
|
|
8
|
+
- **migrate, configs, scripts:** peer-versions.json as canonical source ([3199202](https://github.com/VirtoCommerce/vc-shell/commit/3199202ad190d9260b4bec99f6839232ebcfa839))
|
|
9
|
+
- **setup:** introduce unsetup script and enhance setup process ([0b0ad7f](https://github.com/VirtoCommerce/vc-shell/commit/0b0ad7f2a47564783b3914f58f04d5cc21ce828e))
|
|
10
|
+
- **vc-app-skill:** migrate skill content from create-vc-app to standalone package ([1ac8945](https://github.com/VirtoCommerce/vc-shell/commit/1ac894510ca32cad22efb226117127f76085f85a))
|
|
11
|
+
- **vc-app:** add curated module examples from vendor-portal ([9cdf07a](https://github.com/VirtoCommerce/vc-shell/commit/9cdf07a11de7f8d8b11806e7c79ed9a2c950262a))
|
|
12
|
+
- **vc-app:** add details path patterns with nested types handling ([49ebd16](https://github.com/VirtoCommerce/vc-shell/commit/49ebd1673563a636c38913f858028590ea99763d))
|
|
13
|
+
- **vc-app:** add entry-point skill with command routing ([e20072a](https://github.com/VirtoCommerce/vc-shell/commit/e20072a62883325dff909020b747c942fcd575d1))
|
|
14
|
+
- **vc-app:** add knowledge index, module structure, and list path patterns ([2f9f176](https://github.com/VirtoCommerce/vc-shell/commit/2f9f176476cd14d57d42abe2122a9449dff078fd))
|
|
15
|
+
- **vc-app:** add subagent prompts for code generation ([4dbc259](https://github.com/VirtoCommerce/vc-shell/commit/4dbc25948199d7f40a45d1fb4f17cf12d7985798))
|
|
16
|
+
- **vc-app:** add supporting patterns (toolbar, navigation, widgets) with API verification ([8bce97c](https://github.com/VirtoCommerce/vc-shell/commit/8bce97c29c2524753a7408f572985cf4e7da6475))
|
|
17
|
+
- **vc-app:** create skill directory structure and docs sync script ([d52d881](https://github.com/VirtoCommerce/vc-shell/commit/d52d8810328568efb129658388aa87b10ecbb318))
|
|
67
18
|
|
|
68
19
|
### Bug Fixes
|
|
69
20
|
|
|
21
|
+
- **cli:** remove beforeEnter guard from tenant route templates, format responsive-composable transform ([3752273](https://github.com/VirtoCommerce/vc-shell/commit/37522732b789316a92c4c958c395c8f3fbf9e0ea))
|
|
70
22
|
- **cli:** use :loading prop instead of v-loading directive in blade templates ([99ca705](https://github.com/VirtoCommerce/vc-shell/commit/99ca705cadf1e4686ea26cc576537c6f9aa9060e))
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
**
|
|
75
|
-
|
|
76
|
-
## [1.2.4-beta.3](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.2...v1.2.4-beta.3) (2026-02-20)
|
|
23
|
+
- **create-vc-app:** update templates to use @vc-shell/mf-host and @vc-shell/mf-module ([ba86a3e](https://github.com/VirtoCommerce/vc-shell/commit/ba86a3e9cab2e73269b6b56215282c5f3fc6535c))
|
|
24
|
+
- **release:** update changelog and release-it configuration ([767c312](https://github.com/VirtoCommerce/vc-shell/commit/767c3123773a02a4badc3bcf89661e535d5f26c8))
|
|
25
|
+
- remove duplicate changelog entries caused by multiline regex bug ([2f27d4c](https://github.com/VirtoCommerce/vc-shell/commit/2f27d4c2ca81452ddc1042af47a4648348e7e323))
|
|
26
|
+
- **vc-app:** use non-interactive CLI mode with full flag set for /vc-app create ([b113262](https://github.com/VirtoCommerce/vc-shell/commit/b113262317d340b2d076cdd46a3ab79ec2f9b147))
|
|
77
27
|
|
|
78
28
|
### Code Refactoring
|
|
79
29
|
|
|
30
|
+
- **cli,configs,packages:** apply ESLint flat config lint fixes ([394d5ca](https://github.com/VirtoCommerce/vc-shell/commit/394d5caa30f07ff8408dead09c998deabe0c163f))
|
|
31
|
+
- **cli:** migrate sample-module templates to defineBlade ([b14d9d4](https://github.com/VirtoCommerce/vc-shell/commit/b14d9d4f48944a359dc6de05fcc74cc6580e8824))
|
|
80
32
|
- configure path aliases and migrate imports ([bfffc3c](https://github.com/VirtoCommerce/vc-shell/commit/bfffc3cbe8029cf875e49941061b582825cad9a6))
|
|
33
|
+
- **create-vc-app:** make module scaffolding optional for standalone type ([03874b9](https://github.com/VirtoCommerce/vc-shell/commit/03874b98f8560afafa3bb941a218e54d5cdf7b0f))
|
|
34
|
+
- **create-vc-app:** remove host-app from project type selection ([219517d](https://github.com/VirtoCommerce/vc-shell/commit/219517d20d95b26b9ec5ca2f076ea34915a6bbc7))
|
|
35
|
+
- **create-vc-app:** update templates to use defineAppModule and remove shims ([342440a](https://github.com/VirtoCommerce/vc-shell/commit/342440ae1aa587ed039f35360098c6b9e5bc7ecd))
|
|
36
|
+
- remove legacy ESLint configuration and update dependencies ([1140df6](https://github.com/VirtoCommerce/vc-shell/commit/1140df67938d707b46b9e07d4889f4486f4dd238))
|
|
37
|
+
- remove unused components and update package resolutions ([26ff398](https://github.com/VirtoCommerce/vc-shell/commit/26ff398739d75b23f7f700542920a117e0022ff3))
|
|
38
|
+
- replace defineExpose with exposeToChildren and register blade title via VcBlade ([15ef621](https://github.com/VirtoCommerce/vc-shell/commit/15ef621b096d67711fef821ac14766cd414b7739))
|
|
39
|
+
|
|
40
|
+
### Tests
|
|
41
|
+
|
|
42
|
+
- **create-vc-app:** add unit and integration tests for CLI scaffolding ([3c7a694](https://github.com/VirtoCommerce/vc-shell/commit/3c7a694a548d141b19470a31b148c16bfc2f388f))
|
|
43
|
+
|
|
44
|
+
### Styles
|
|
45
|
+
|
|
46
|
+
- **lint:** one-time cleanup of pre-existing violations and tech debt ([a7113c5](https://github.com/VirtoCommerce/vc-shell/commit/a7113c5d25b5b4dc9da20f6bc40c54b57fe46422))
|
|
47
|
+
|
|
48
|
+
### Chores
|
|
49
|
+
|
|
50
|
+
- bump package versions to 1.2.4-beta.4 for api-client-generator, create-vc-app, ts-config, and release-config ([1b590c9](https://github.com/VirtoCommerce/vc-shell/commit/1b590c9e7733b1784b7ac3a992a745dfc666a236))
|
|
51
|
+
- **release:** migrate monorepo release flow to release-it ([8dc02e6](https://github.com/VirtoCommerce/vc-shell/commit/8dc02e691066ffe4e016553639b5ff5c1e6fab70))
|
|
52
|
+
- **release:** v2.0.0-alpha.7 ([adf49e7](https://github.com/VirtoCommerce/vc-shell/commit/adf49e74bd3617d3aa51c9d4db94474294b3b925))
|
|
53
|
+
- remove unused asset files from host and standalone templates ([901da40](https://github.com/VirtoCommerce/vc-shell/commit/901da409c37c43a73a6f35091ab77f2c631a9243))
|
|
54
|
+
- **scripts:** normalize yarn scripts per industry standards ([1cdd0cb](https://github.com/VirtoCommerce/vc-shell/commit/1cdd0cb517d2436ef2a509c6b6c358f6a48630d1))
|
|
55
|
+
- update @vc-shell package versions to 1.2.4-beta.5 in \_package.json ([d3d6ee0](https://github.com/VirtoCommerce/vc-shell/commit/d3d6ee0892b3ab953a5973f7a2f6ba097fae04f1))
|
|
56
|
+
- update changelogs for multiple packages, including bug fixes and feature enhancements ([72e690f](https://github.com/VirtoCommerce/vc-shell/commit/72e690f5e21aaaf22ce34ff41ec60fb11ed1d018))
|
|
57
|
+
- **vc-app-skill:** add to release pipeline and bump to 2.0.0-alpha.16 ([f703552](https://github.com/VirtoCommerce/vc-shell/commit/f7035529020bb330a5f50840c50ad0843828ebf1))
|
|
58
|
+
|
|
59
|
+
### Other Changes
|
|
60
|
+
|
|
61
|
+
- Feat/research (#216) ([f028d9e](https://github.com/VirtoCommerce/vc-shell/commit/f028d9e1fe410a18fec4e127a65860cfb2309e36)), closes [#216](https://github.com/VirtoCommerce/vc-shell/issues/216)
|
|
62
|
+
- Feat/research (#217) ([174beee](https://github.com/VirtoCommerce/vc-shell/commit/174beeef16d0f9c7d6a5b96f0cc375bc50eb06d2)), closes [#217](https://github.com/VirtoCommerce/vc-shell/issues/217)
|
|
63
|
+
- Feat/vc table compositional (#215) ([2194f2f](https://github.com/VirtoCommerce/vc-shell/commit/2194f2fb82009e3dd5f2e17389b7fb03dd74b603)), closes [#215](https://github.com/VirtoCommerce/vc-shell/issues/215)
|
|
64
|
+
- Feat/virto oz (#214) ([21250c9](https://github.com/VirtoCommerce/vc-shell/commit/21250c93ebb2d096b7accdde6b02a73782fc6535)), closes [#214](https://github.com/VirtoCommerce/vc-shell/issues/214)
|
|
65
|
+
- Merge branch 'feature/vc-app-skill' ([bb8ac73](https://github.com/VirtoCommerce/vc-shell/commit/bb8ac736f7eb6ac3c3742770b2677959305a41ef))
|
|
66
|
+
|
|
67
|
+
### release
|
|
68
|
+
|
|
69
|
+
- v1.2.3 ([6270dab](https://github.com/VirtoCommerce/vc-shell/commit/6270dab6a5a8149c8380d17d55b77531bad13531))
|
|
70
|
+
- v1.2.4-beta.2 ([d4cf91e](https://github.com/VirtoCommerce/vc-shell/commit/d4cf91ea30b40f13cc7ca13e7d11c8da13459175))
|
|
71
|
+
- v1.2.4-beta.3 ([d42e7a8](https://github.com/VirtoCommerce/vc-shell/commit/d42e7a822a2b2c7a5f89bf83d97babc2e4b3fa07))
|
|
72
|
+
- v1.2.4-beta.4 ([55336cc](https://github.com/VirtoCommerce/vc-shell/commit/55336ccab2cfd7e697fd64e962262359ac9eb37f))
|
|
73
|
+
- v1.2.4-beta.5 ([4cc2527](https://github.com/VirtoCommerce/vc-shell/commit/4cc2527f06178114fd3db9f781b1d6fd868a7a61))
|
|
74
|
+
- v1.2.4-beta.6 ([86734c4](https://github.com/VirtoCommerce/vc-shell/commit/86734c47306da89feb6b16685287744bb2855cc8))
|
|
75
|
+
- v1.2.4-beta.7 ([cc6ef5c](https://github.com/VirtoCommerce/vc-shell/commit/cc6ef5c98d3f8b6489126a950e994335016ea35d))
|
|
76
|
+
- v1.2.4-beta.8 ([25aa324](https://github.com/VirtoCommerce/vc-shell/commit/25aa3246d45b375af4fffcc256a447d05dfda64c))
|
|
77
|
+
- v2.0.0-alpha.10 ([5a9c0af](https://github.com/VirtoCommerce/vc-shell/commit/5a9c0af632a17e2d01dcd0dc07a166aabe6fe903))
|
|
78
|
+
- v2.0.0-alpha.11 ([4e5d63e](https://github.com/VirtoCommerce/vc-shell/commit/4e5d63ee34bb825d8e363e40fbac27e711261f9e))
|
|
79
|
+
- v2.0.0-alpha.12 ([7143a74](https://github.com/VirtoCommerce/vc-shell/commit/7143a74ae0bdd3d70f0133b69d380b82c10526c1))
|
|
80
|
+
- v2.0.0-alpha.13 ([c422678](https://github.com/VirtoCommerce/vc-shell/commit/c42267854f9ed51215e8363165c9bfe077c313a3))
|
|
81
|
+
- v2.0.0-alpha.14 ([0c91031](https://github.com/VirtoCommerce/vc-shell/commit/0c91031706843ccbc2f5d32093c8655c6bbc718f))
|
|
82
|
+
- v2.0.0-alpha.15 ([fa8958e](https://github.com/VirtoCommerce/vc-shell/commit/fa8958e7241117ebff164a2d399f13f74d48b55f))
|
|
83
|
+
- v2.0.0-alpha.16 ([79ab2b1](https://github.com/VirtoCommerce/vc-shell/commit/79ab2b1022258332c327e742ab0adf1b8fde35ce))
|
|
84
|
+
- v2.0.0-alpha.17 ([408e4af](https://github.com/VirtoCommerce/vc-shell/commit/408e4af487f37b8aff790398d5a992820c8f05a2))
|
|
85
|
+
- v2.0.0-alpha.18 ([2466e35](https://github.com/VirtoCommerce/vc-shell/commit/2466e359313c9d78893d2473474ec5ce46ad49ca))
|
|
86
|
+
- v2.0.0-alpha.19 ([9d5a075](https://github.com/VirtoCommerce/vc-shell/commit/9d5a075e0a722c6c7371706f582b59bbf570ef37))
|
|
87
|
+
- v2.0.0-alpha.2 ([223c859](https://github.com/VirtoCommerce/vc-shell/commit/223c8596dbad42704072ffc0dd1c4b8361227af0))
|
|
88
|
+
- v2.0.0-alpha.20 ([98bd4a6](https://github.com/VirtoCommerce/vc-shell/commit/98bd4a62ffa933bbfdae16ef7e46777084f15190))
|
|
89
|
+
- v2.0.0-alpha.21 ([bbd0d70](https://github.com/VirtoCommerce/vc-shell/commit/bbd0d70464ff5c0dafbc67ed3bf8ea36f65b0a7a))
|
|
90
|
+
- v2.0.0-alpha.22 ([ec455eb](https://github.com/VirtoCommerce/vc-shell/commit/ec455eba6bb91ae5fdbea64817ce1650116b9d50))
|
|
91
|
+
- v2.0.0-alpha.23 ([65b2144](https://github.com/VirtoCommerce/vc-shell/commit/65b214434ef1630069aecd6f2eaf916531bf37ef))
|
|
92
|
+
- v2.0.0-alpha.24 ([05ff510](https://github.com/VirtoCommerce/vc-shell/commit/05ff5107b81e0280447872ea52771fc47cb3cd67))
|
|
93
|
+
- v2.0.0-alpha.25 ([19d09b9](https://github.com/VirtoCommerce/vc-shell/commit/19d09b998861836b288aba36a6d18d7b26cff0b7))
|
|
94
|
+
- v2.0.0-alpha.26 ([ee6818c](https://github.com/VirtoCommerce/vc-shell/commit/ee6818ceb60b24d26b7011f2584c8d23f6b4fd3e))
|
|
95
|
+
- v2.0.0-alpha.27 ([f43652d](https://github.com/VirtoCommerce/vc-shell/commit/f43652d1aae8af36d5d2f00312492ea9de57f2f1))
|
|
96
|
+
- v2.0.0-alpha.28 ([7954dfd](https://github.com/VirtoCommerce/vc-shell/commit/7954dfddf1126d00038b8f66a6fe3efc5c19cfe8))
|
|
97
|
+
- v2.0.0-alpha.29 ([ffa72cf](https://github.com/VirtoCommerce/vc-shell/commit/ffa72cf458eed77c78955c88d211a82ead152b0f))
|
|
98
|
+
- v2.0.0-alpha.3 ([23e82c2](https://github.com/VirtoCommerce/vc-shell/commit/23e82c2423efb5cddf8ea891ea5d5e84832a6acd))
|
|
99
|
+
- v2.0.0-alpha.30 ([2db7f17](https://github.com/VirtoCommerce/vc-shell/commit/2db7f17d74afe97e3c6dfef2de436a797f0c32f4))
|
|
100
|
+
- v2.0.0-alpha.31 ([8d92fba](https://github.com/VirtoCommerce/vc-shell/commit/8d92fbad5954c71164e7815193b3496e569a5703))
|
|
101
|
+
- v2.0.0-alpha.32 ([1ed5533](https://github.com/VirtoCommerce/vc-shell/commit/1ed5533a6a20081e655f2e628bf824de40472f5d))
|
|
102
|
+
- v2.0.0-alpha.33 ([49cad36](https://github.com/VirtoCommerce/vc-shell/commit/49cad36a454534136b52576e6a0d97dfe48ae895))
|
|
103
|
+
- v2.0.0-alpha.34 ([78bed5a](https://github.com/VirtoCommerce/vc-shell/commit/78bed5af3aeb7ace2eb9f58ddde3235fced47b37))
|
|
104
|
+
- v2.0.0-alpha.35 ([05d6f25](https://github.com/VirtoCommerce/vc-shell/commit/05d6f2562c939dd4a2e7e4e7a3d80948beccbef1))
|
|
105
|
+
- v2.0.0-alpha.4 ([a3098f9](https://github.com/VirtoCommerce/vc-shell/commit/a3098f9ccc128c4ad3b4d8b5cbcbf8ea7a0f6df5))
|
|
106
|
+
- v2.0.0-alpha.5 ([3cae61a](https://github.com/VirtoCommerce/vc-shell/commit/3cae61a852a8f88aac8e0c51affad4517c8c5eca))
|
|
107
|
+
- v2.0.0-alpha.6 ([9196b2c](https://github.com/VirtoCommerce/vc-shell/commit/9196b2c232094d8d7750963718777096c0cc9864))
|
|
108
|
+
- v2.0.0-alpha.8 ([8228f12](https://github.com/VirtoCommerce/vc-shell/commit/8228f12bffc014ae0f8f28b3ef3fa0ac02bc33e2))
|
|
109
|
+
- v2.0.0-alpha.9 ([ef631bd](https://github.com/VirtoCommerce/vc-shell/commit/ef631bdbccbf2be1afbc592418e680e79d2c1fbe))
|
|
81
110
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
85
|
-
|
|
86
|
-
## [1.2.4-beta.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.4-beta.0...v1.2.4-beta.1) (2026-02-16)
|
|
87
|
-
|
|
88
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
89
|
-
|
|
90
|
-
## [1.2.4-beta.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.3-beta.1...v1.2.4-beta.0) (2026-02-16)
|
|
91
|
-
|
|
92
|
-
### Bug Fixes
|
|
93
|
-
|
|
94
|
-
- **router:** update routes to include ForgotPassword and adjust background handling ([900c45d](https://github.com/VirtoCommerce/vc-shell/commit/900c45d9cc2812622ccdd369da209c516a66c75f))
|
|
95
|
-
|
|
96
|
-
## [1.2.3-beta.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.3...v1.2.3-beta.1) (2026-01-26)
|
|
111
|
+
### BREAKING CHANGES
|
|
97
112
|
|
|
98
|
-
**
|
|
113
|
+
- **scripts:** for external consumers: old script names
|
|
114
|
+
(storybook-serve, build-framework, check-locales etc) are removed.
|
|
115
|
+
Legacy aliases are deliberately not provided — they would perpetuate
|
|
116
|
+
the non-standard naming this commit eliminates.
|
|
99
117
|
|
|
100
118
|
## [1.2.3](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.2...v1.2.3) (2026-01-12)
|
|
101
119
|
|
|
@@ -105,75 +123,6 @@
|
|
|
105
123
|
|
|
106
124
|
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
107
125
|
|
|
108
|
-
## [1.2.3-beta.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.14...v1.2.3-beta.0) (2025-12-26)
|
|
109
|
-
|
|
110
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
111
|
-
|
|
112
|
-
## [1.1.99-alpha.14](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.13...v1.1.99-alpha.14) (2025-11-27)
|
|
113
|
-
|
|
114
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
115
|
-
|
|
116
|
-
## [1.1.99-alpha.13](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.12...v1.1.99-alpha.13) (2025-11-27)
|
|
117
|
-
|
|
118
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
119
|
-
|
|
120
|
-
## [1.1.99-alpha.12](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.11...v1.1.99-alpha.12) (2025-11-27)
|
|
121
|
-
|
|
122
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
123
|
-
|
|
124
|
-
## [1.1.99-alpha.11](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.10...v1.1.99-alpha.11) (2025-11-27)
|
|
125
|
-
|
|
126
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
127
|
-
|
|
128
|
-
## [1.1.99-alpha.10](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.9...v1.1.99-alpha.10) (2025-11-27)
|
|
129
|
-
|
|
130
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
131
|
-
|
|
132
|
-
## [1.1.99-alpha.9](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.8...v1.1.99-alpha.9) (2025-11-26)
|
|
133
|
-
|
|
134
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
135
|
-
|
|
136
|
-
## [1.1.99-alpha.8](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.7...v1.1.99-alpha.8) (2025-11-25)
|
|
137
|
-
|
|
138
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
139
|
-
|
|
140
|
-
## [1.1.99-alpha.7](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.6...v1.1.99-alpha.7) (2025-11-25)
|
|
141
|
-
|
|
142
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
143
|
-
|
|
144
|
-
## [1.1.99-alpha.6](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.5...v1.1.99-alpha.6) (2025-11-25)
|
|
145
|
-
|
|
146
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
147
|
-
|
|
148
|
-
## [1.1.99-alpha.5](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.4...v1.1.99-alpha.5) (2025-11-25)
|
|
149
|
-
|
|
150
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
151
|
-
|
|
152
|
-
## [1.1.99-alpha.4](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.3...v1.1.99-alpha.4) (2025-11-25)
|
|
153
|
-
|
|
154
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
155
|
-
|
|
156
|
-
## [1.1.99-alpha.3](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.1...v1.1.99-alpha.3) (2025-11-25)
|
|
157
|
-
|
|
158
|
-
### Features
|
|
159
|
-
|
|
160
|
-
- add comprehensive AI guides and prompts for VC-Shell framework ([15f3d8d](https://github.com/VirtoCommerce/vc-shell/commit/15f3d8d5b52f3a0ac7a5a753f639d74406f92e77))
|
|
161
|
-
- add comprehensive documentation and CLI enhancements for create-vc-app ([b03ebb3](https://github.com/VirtoCommerce/vc-shell/commit/b03ebb3c50923c11c57f3fef609b8a8ab6873670))
|
|
162
|
-
- update auth providers and fix tsx path in pre-commit hook ([a92d957](https://github.com/VirtoCommerce/vc-shell/commit/a92d957e2b0a0be177519e7256af9279d3419713))
|
|
163
|
-
|
|
164
|
-
### Bug Fixes
|
|
165
|
-
|
|
166
|
-
- update template path in getTemplateRoot function for correct template resolution ([9072ae4](https://github.com/VirtoCommerce/vc-shell/commit/9072ae4d74abbaa2fceec382a4b5042fa8747ae5))
|
|
167
|
-
- correct template path in create-app workflow for accurate template rendering ([3974046](https://github.com/VirtoCommerce/vc-shell/commit/3974046b5a753e00e199c93d44da020c83942af3))
|
|
168
|
-
|
|
169
|
-
### Documentation
|
|
170
|
-
|
|
171
|
-
- update ([f71f076](https://github.com/VirtoCommerce/vc-shell/commit/f71f076ee32f25804237b5604068ff00e46bc706))
|
|
172
|
-
|
|
173
|
-
### Code Refactoring
|
|
174
|
-
|
|
175
|
-
- **ai-codegen:** improve code quality and project organization ([b5dcaef](https://github.com/VirtoCommerce/vc-shell/commit/b5dcaef03900d9d717721114da3995875da10774))
|
|
176
|
-
|
|
177
126
|
## [1.2.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.2.0...v1.2.1) (2025-11-13)
|
|
178
127
|
|
|
179
128
|
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
@@ -182,54 +131,6 @@
|
|
|
182
131
|
|
|
183
132
|
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
184
133
|
|
|
185
|
-
## [1.1.99-alpha.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.1...v1.1.99-alpha.2) (2025-11-07)
|
|
186
|
-
|
|
187
|
-
### Bug Fixes
|
|
188
|
-
|
|
189
|
-
- update template path in getTemplateRoot function for correct template resolution ([9072ae4](https://github.com/VirtoCommerce/vc-shell/commit/9072ae4d74abbaa2fceec382a4b5042fa8747ae5))
|
|
190
|
-
|
|
191
|
-
## [1.1.99-alpha.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.99-alpha.0...v1.1.99-alpha.1) (2025-11-07)
|
|
192
|
-
|
|
193
|
-
### Bug Fixes
|
|
194
|
-
|
|
195
|
-
- correct template path in create-app workflow for accurate template rendering ([3974046](https://github.com/VirtoCommerce/vc-shell/commit/3974046b5a753e00e199c93d44da020c83942af3))
|
|
196
|
-
|
|
197
|
-
### Documentation
|
|
198
|
-
|
|
199
|
-
- update ([f71f076](https://github.com/VirtoCommerce/vc-shell/commit/f71f076ee32f25804237b5604068ff00e46bc706))
|
|
200
|
-
|
|
201
|
-
## [1.1.99-alpha.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.98-rc.5...v1.1.99-alpha.0) (2025-11-07)
|
|
202
|
-
|
|
203
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
204
|
-
|
|
205
|
-
## [1.1.98-rc.5](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.98-rc.4...v1.1.98-rc.5) (2025-11-07)
|
|
206
|
-
|
|
207
|
-
### Features
|
|
208
|
-
|
|
209
|
-
- add comprehensive AI guides and prompts for VC-Shell framework ([15f3d8d](https://github.com/VirtoCommerce/vc-shell/commit/15f3d8d5b52f3a0ac7a5a753f639d74406f92e77))
|
|
210
|
-
- add comprehensive documentation and CLI enhancements for create-vc-app ([b03ebb3](https://github.com/VirtoCommerce/vc-shell/commit/b03ebb3c50923c11c57f3fef609b8a8ab6873670))
|
|
211
|
-
- update auth providers and fix tsx path in pre-commit hook ([a92d957](https://github.com/VirtoCommerce/vc-shell/commit/a92d957e2b0a0be177519e7256af9279d3419713))
|
|
212
|
-
|
|
213
|
-
## [1.1.98-rc.4](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.98-rc.3...v1.1.98-rc.4) (2025-10-24)
|
|
214
|
-
|
|
215
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
216
|
-
|
|
217
|
-
## [1.1.98-rc.3](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.98-rc.2...v1.1.98-rc.3) (2025-10-24)
|
|
218
|
-
|
|
219
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
220
|
-
|
|
221
|
-
## [1.1.98-rc.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.98-rc.1...v1.1.98-rc.2) (2025-10-24)
|
|
222
|
-
|
|
223
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
224
|
-
|
|
225
|
-
## [1.1.98-rc.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.98-rc.0...v1.1.98-rc.1) (2025-10-24)
|
|
226
|
-
|
|
227
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
228
|
-
|
|
229
|
-
## [1.1.98-rc.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.97...v1.1.98-rc.0) (2025-10-24)
|
|
230
|
-
|
|
231
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
232
|
-
|
|
233
134
|
## [1.1.97](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.96...v1.1.97) (2025-10-24)
|
|
234
135
|
|
|
235
136
|
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
@@ -258,28 +159,6 @@
|
|
|
258
159
|
|
|
259
160
|
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
260
161
|
|
|
261
|
-
## [1.1.91-alpha.5](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.91-alpha.4...v1.1.91-alpha.5) (2025-10-14)
|
|
262
|
-
|
|
263
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
264
|
-
|
|
265
|
-
## [1.1.91-alpha.4](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.91-alpha.3...v1.1.91-alpha.4) (2025-10-14)
|
|
266
|
-
|
|
267
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
268
|
-
|
|
269
|
-
## [1.1.91-alpha.3](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.91-alpha.2...v1.1.91-alpha.3) (2025-10-14)
|
|
270
|
-
|
|
271
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
272
|
-
|
|
273
|
-
## [1.1.91-alpha.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.91-alpha.1...v1.1.91-alpha.2) (2025-10-14)
|
|
274
|
-
|
|
275
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
276
|
-
|
|
277
|
-
## [1.1.91-alpha.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.90...v1.1.91-alpha.1) (2025-10-14)
|
|
278
|
-
|
|
279
|
-
### Features
|
|
280
|
-
|
|
281
|
-
- update auth providers and fix tsx path in pre-commit hook ([a92d957](https://github.com/VirtoCommerce/vc-shell/commit/a92d957e2b0a0be177519e7256af9279d3419713))
|
|
282
|
-
|
|
283
162
|
## [1.1.90](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.89...v1.1.90) (2025-10-08)
|
|
284
163
|
|
|
285
164
|
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
@@ -310,20 +189,12 @@
|
|
|
310
189
|
|
|
311
190
|
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
312
191
|
|
|
313
|
-
## [1.1.84-alpha.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.83...v1.1.84-alpha.0) (2025-09-30)
|
|
314
|
-
|
|
315
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
316
|
-
|
|
317
192
|
## [1.1.83](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.83-alpha.0...v1.1.83) (2025-09-30)
|
|
318
193
|
|
|
319
194
|
### Features
|
|
320
195
|
|
|
321
196
|
- **create-vc-app:** add type definitions for internationalization properties in Vue components ([c215a55](https://github.com/VirtoCommerce/vc-shell/commit/c215a558a113dfc48b53667a6f32ab2537f311f0))
|
|
322
197
|
|
|
323
|
-
## [1.1.83-alpha.0](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.82...v1.1.83-alpha.0) (2025-09-24)
|
|
324
|
-
|
|
325
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
326
|
-
|
|
327
198
|
## [1.1.82](https://github.com/VirtoCommerce/vc-shell/compare/v1.1.81...v1.1.82) (2025-09-23)
|
|
328
199
|
|
|
329
200
|
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
@@ -712,12 +583,6 @@
|
|
|
712
583
|
|
|
713
584
|
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
714
585
|
|
|
715
|
-
## [1.1.0-alpha.2](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.340...v1.1.0-alpha.2) (2025-02-25)
|
|
716
|
-
|
|
717
|
-
### Features
|
|
718
|
-
|
|
719
|
-
- partial redesign ([846e215](https://github.com/VirtoCommerce/vc-shell/commit/846e2152c6e48753622ca7cf3a71300323c99d51))
|
|
720
|
-
|
|
721
586
|
## [1.0.340](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.339...v1.0.340) (2025-02-06)
|
|
722
587
|
|
|
723
588
|
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
@@ -770,10 +635,6 @@
|
|
|
770
635
|
|
|
771
636
|
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
772
637
|
|
|
773
|
-
## [1.1.0-alpha.1](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.327...v1.1.0-alpha.1) (2024-11-13)
|
|
774
|
-
|
|
775
|
-
**Note:** Version bump only for package @vc-shell/create-vc-app
|
|
776
|
-
|
|
777
638
|
## [1.0.327](https://github.com/VirtoCommerce/vc-shell/compare/v1.0.326...v1.0.327) (2024-11-12)
|
|
778
639
|
|
|
779
640
|
**Note:** Version bump only for package @vc-shell/create-vc-app
|
package/README.md
CHANGED
|
@@ -10,11 +10,11 @@ npx create-vc-app [project-name]
|
|
|
10
10
|
|
|
11
11
|
Interactive prompts guide you through project setup. Three project types are available:
|
|
12
12
|
|
|
13
|
-
| Type
|
|
14
|
-
|
|
15
|
-
| **Standalone App** | Full application with bundled modules
|
|
13
|
+
| Type | Description |
|
|
14
|
+
| ------------------ | -------------------------------------------------- |
|
|
15
|
+
| **Standalone App** | Full application with bundled modules |
|
|
16
16
|
| **Dynamic Module** | Remote module loaded by host via Module Federation |
|
|
17
|
-
| **Host App**
|
|
17
|
+
| **Host App** | Shell that loads dynamic modules at runtime |
|
|
18
18
|
|
|
19
19
|
### Non-Interactive Mode
|
|
20
20
|
|
|
@@ -33,20 +33,20 @@ npx create-vc-app my-shell --type host-app --dashboard --tenant-routes --ai-agen
|
|
|
33
33
|
|
|
34
34
|
### Options
|
|
35
35
|
|
|
36
|
-
| Option
|
|
37
|
-
|
|
38
|
-
| `--type <type>`
|
|
39
|
-
| `--name`, `--app-name` | Application name
|
|
40
|
-
| `--package-name`
|
|
41
|
-
| `--module-name`
|
|
42
|
-
| `--base-path`
|
|
43
|
-
| `--tenant-routes`
|
|
44
|
-
| `--ai-agent`
|
|
45
|
-
| `--dashboard`
|
|
46
|
-
| `--mocks`
|
|
47
|
-
| `--overwrite`
|
|
48
|
-
| `--help`, `-h`
|
|
49
|
-
| `--version`, `-v`
|
|
36
|
+
| Option | Description | Default |
|
|
37
|
+
| ---------------------- | ------------------------------------------------------------ | ---------------------- |
|
|
38
|
+
| `--type <type>` | Project type: `standalone` \| `dynamic-module` \| `host-app` | _(prompted)_ |
|
|
39
|
+
| `--name`, `--app-name` | Application name | Directory name |
|
|
40
|
+
| `--package-name` | npm package name | App name (validated) |
|
|
41
|
+
| `--module-name` | Initial module name | App name in title case |
|
|
42
|
+
| `--base-path` | Base path for the application | `/apps/<name>/` |
|
|
43
|
+
| `--tenant-routes` | Include tenant routing (`/:tenantId` prefix) | `false` |
|
|
44
|
+
| `--ai-agent` | Include AI Agent configuration | `false` |
|
|
45
|
+
| `--dashboard` | Include Dashboard with widgets | `false` |
|
|
46
|
+
| `--mocks` | Include sample module with mock data | `false` |
|
|
47
|
+
| `--overwrite` | Overwrite existing files without confirmation | `false` |
|
|
48
|
+
| `--help`, `-h` | Show help | — |
|
|
49
|
+
| `--version`, `-v` | Show version | — |
|
|
50
50
|
|
|
51
51
|
## Add a Module to Existing Project
|
|
52
52
|
|
|
@@ -57,6 +57,7 @@ npx create-vc-app add-module <module-name>
|
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
This will:
|
|
60
|
+
|
|
60
61
|
1. Create `src/modules/<module-name>/` with list + details pages
|
|
61
62
|
2. Update `src/main.ts` — add import and `app.use()`
|
|
62
63
|
3. Update `src/bootstrap.ts` — add menu item
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../src/commands/init.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../src/commands/init.ts"],"names":[],"mappings":"AAqBA,wBAAsB,WAAW,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,YAAY,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAkNpG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"init.test.d.ts","sourceRoot":"","sources":["../../src/commands/init.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"codegen.d.ts","sourceRoot":"","sources":["../../src/engine/codegen.ts"],"names":[],"mappings":"AAuBA;;GAEG;AACH,wBAAgB,eAAe,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,IAAI,CAuB5E;AAED;;GAEG;AACH,wBAAgB,sBAAsB,
|
|
1
|
+
{"version":3,"file":"codegen.d.ts","sourceRoot":"","sources":["../../src/engine/codegen.ts"],"names":[],"mappings":"AAuBA;;GAEG;AACH,wBAAgB,eAAe,CAAC,UAAU,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,IAAI,CAuB5E;AAED;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,aAAa,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,GAAG,IAAI,CAsCtF"}
|
package/dist/engine/helpers.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export declare function isValidPackageName(name: string): boolean;
|
|
|
7
7
|
export declare function toValidPackageName(name: string): string;
|
|
8
8
|
export declare function toValidBasePath(basePath: string): string;
|
|
9
9
|
export declare function buildTemplateData(options: {
|
|
10
|
-
moduleName
|
|
10
|
+
moduleName?: string;
|
|
11
11
|
projectName?: string;
|
|
12
12
|
packageName?: string;
|
|
13
13
|
basePath?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../src/engine/helpers.ts"],"names":[],"mappings":"AAAA,wBAAgB,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAO/C;AAED,wBAAgB,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,
|
|
1
|
+
{"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../src/engine/helpers.ts"],"names":[],"mappings":"AAAA,wBAAgB,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAO/C;AAED,wBAAgB,YAAY,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAEhD;AAED,wBAAgB,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAG/C;AAED,wBAAgB,oBAAoB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAKxD;AAED,wBAAgB,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAElD;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAExD;AAED,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAOvD;AAED,wBAAgB,eAAe,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAOxD;AAED,wBAAgB,iBAAiB,CAAC,OAAO,EAAE;IACzC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,KAAK,CAAC,EAAE,OAAO,CAAC;CACjB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,CA6BnC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"helpers.test.d.ts","sourceRoot":"","sources":["../../src/engine/helpers.test.ts"],"names":[],"mappings":""}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"template.d.ts","sourceRoot":"","sources":["../../src/engine/template.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"template.d.ts","sourceRoot":"","sources":["../../src/engine/template.ts"],"names":[],"mappings":"AAsBA;;;GAGG;AACH,wBAAgB,cAAc,CAAC,YAAY,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI,CAmB5G;AAED;;;;GAIG;AACH,wBAAgB,SAAS,CAAC,WAAW,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI,CA6BrG;AAED;;;GAGG;AACH,wBAAgB,QAAQ,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAY1C;AAED;;GAEG;AACH,wBAAgB,UAAU,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAInD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"template.test.d.ts","sourceRoot":"","sources":["../../src/engine/template.test.ts"],"names":[],"mappings":""}
|