@beecode/msh-cli 1.2.2 → 2.0.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 +2 -2
- package/bin/msh.js +1 -1
- package/dist/app/cli-app.d.ts +5 -0
- package/dist/app/cli-app.d.ts.map +1 -0
- package/dist/app/cli-app.js +5 -9
- package/dist/app/http-server-app.d.ts +5 -0
- package/dist/app/http-server-app.d.ts.map +1 -0
- package/dist/app/http-server-app.js +3 -7
- package/dist/app/init/parse-and-route-args.d.ts +8 -0
- package/dist/app/init/parse-and-route-args.d.ts.map +1 -0
- package/dist/app/init/parse-and-route-args.js +5 -9
- package/dist/app/tui-app.d.ts +5 -0
- package/dist/app/tui-app.d.ts.map +1 -0
- package/dist/app/tui-app.js +3 -7
- package/dist/controller/cli-menu/main-menu.d.ts +6 -0
- package/dist/controller/cli-menu/main-menu.d.ts.map +1 -0
- package/dist/controller/cli-menu/main-menu.js +11 -11
- package/dist/controller/yargs-router/cli-router.d.ts +14 -0
- package/dist/controller/yargs-router/cli-router.d.ts.map +1 -0
- package/dist/controller/yargs-router/cli-router.js +34 -29
- package/dist/controller/yargs-router/git-router.d.ts +10 -0
- package/dist/controller/yargs-router/git-router.d.ts.map +1 -0
- package/dist/controller/yargs-router/git-router.js +51 -49
- package/dist/controller/yargs-router/npm-router.d.ts +7 -0
- package/dist/controller/yargs-router/npm-router.d.ts.map +1 -0
- package/dist/controller/yargs-router/npm-router.js +25 -26
- package/dist/dal/shell-dal.d.ts +12 -0
- package/dist/dal/shell-dal.d.ts.map +1 -0
- package/dist/dal/shell-dal.js +12 -18
- package/dist/index-cli.d.ts +2 -0
- package/dist/index-cli.d.ts.map +1 -0
- package/dist/index-cli.js +8 -11
- package/dist/index-init.d.ts +2 -0
- package/dist/index-init.d.ts.map +1 -0
- package/dist/index-init.js +7 -12
- package/dist/index-jest-setup.d.ts +6 -0
- package/dist/index-jest-setup.d.ts.map +1 -0
- package/dist/index-jest-setup.js +4 -0
- package/dist/index-server.d.ts +2 -0
- package/dist/index-server.d.ts.map +1 -0
- package/dist/index-server.js +6 -9
- package/dist/index-terminal-ui.d.ts +2 -0
- package/dist/index-terminal-ui.d.ts.map +1 -0
- package/dist/index-terminal-ui.js +6 -9
- package/dist/model/command/init-config.d.ts +5 -0
- package/dist/model/command/init-config.d.ts.map +1 -0
- package/dist/model/command/init-config.js +4 -8
- package/dist/model/command/interfaces.d.ts +12 -0
- package/dist/model/command/interfaces.d.ts.map +1 -0
- package/dist/model/command/interfaces.js +2 -3
- package/dist/model/command/project-command/git-clone-project-command.d.ts +15 -0
- package/dist/model/command/project-command/git-clone-project-command.d.ts.map +1 -0
- package/dist/model/command/project-command/git-clone-project-command.js +9 -12
- package/dist/model/command/project-command/git-simple-project-command.d.ts +16 -0
- package/dist/model/command/project-command/git-simple-project-command.d.ts.map +1 -0
- package/dist/model/command/project-command/git-simple-project-command.js +9 -13
- package/dist/model/command/project-command/git-tag-project-command.d.ts +12 -0
- package/dist/model/command/project-command/git-tag-project-command.d.ts.map +1 -0
- package/dist/model/command/project-command/git-tag-project-command.js +14 -12
- package/dist/model/command/project-command/npm-global-project-command.d.ts +21 -0
- package/dist/model/command/project-command/npm-global-project-command.d.ts.map +1 -0
- package/dist/model/command/project-command/npm-global-project-command.js +35 -37
- package/dist/model/command/project-command/npm-install-project-command.d.ts +9 -0
- package/dist/model/command/project-command/npm-install-project-command.d.ts.map +1 -0
- package/dist/model/command/project-command/npm-install-project-command.js +9 -16
- package/dist/model/command/project-command/project-command.d.ts +15 -0
- package/dist/model/command/project-command/project-command.d.ts.map +1 -0
- package/dist/model/command/project-command/project-command.js +7 -12
- package/dist/service/clear-service.d.ts +2 -0
- package/dist/service/clear-service.d.ts.map +1 -0
- package/dist/service/clear-service.js +4 -7
- package/dist/service/file-service.d.ts +7 -0
- package/dist/service/file-service.d.ts.map +1 -0
- package/dist/service/file-service.js +4 -7
- package/dist/service/init-config-service.d.ts +7 -0
- package/dist/service/init-config-service.d.ts.map +1 -0
- package/dist/service/init-config-service.js +13 -18
- package/dist/service/shell-service.d.ts +12 -0
- package/dist/service/shell-service.d.ts.map +1 -0
- package/dist/service/shell-service.js +29 -31
- package/dist/service/terminal-wrapper.d.ts +12 -0
- package/dist/service/terminal-wrapper.d.ts.map +1 -0
- package/dist/service/terminal-wrapper.js +6 -11
- package/dist/util/base-menu.d.ts +12 -0
- package/dist/util/base-menu.d.ts.map +1 -0
- package/dist/util/base-menu.js +20 -19
- package/dist/util/config.d.ts +21 -0
- package/dist/util/config.d.ts.map +1 -0
- package/dist/util/config.js +37 -41
- package/dist/util/constant.d.ts +5 -0
- package/dist/util/constant.d.ts.map +1 -0
- package/dist/util/constant.js +3 -6
- package/dist/util/logger.d.ts +3 -0
- package/dist/util/logger.d.ts.map +1 -0
- package/dist/util/logger.js +14 -13
- package/dist/util/object-util.d.ts +4 -0
- package/dist/util/object-util.d.ts.map +1 -0
- package/dist/util/object-util.js +3 -5
- package/dist/util/sub-menu.d.ts +8 -0
- package/dist/util/sub-menu.d.ts.map +1 -0
- package/dist/util/sub-menu.js +10 -11
- package/dist/util/update-notifier-util.d.ts +4 -0
- package/dist/util/update-notifier-util.d.ts.map +1 -0
- package/dist/util/update-notifier-util.js +5 -11
- package/lib/app/cli-app.d.ts +5 -0
- package/lib/app/cli-app.d.ts.map +1 -0
- package/lib/app/cli-app.js +29 -0
- package/lib/app/http-server-app.d.ts +5 -0
- package/lib/app/http-server-app.d.ts.map +1 -0
- package/lib/app/http-server-app.js +31 -0
- package/lib/app/init/parse-and-route-args.d.ts +8 -0
- package/lib/app/init/parse-and-route-args.d.ts.map +1 -0
- package/lib/app/init/parse-and-route-args.js +74 -0
- package/lib/app/tui-app.d.ts +5 -0
- package/lib/app/tui-app.d.ts.map +1 -0
- package/lib/app/tui-app.js +31 -0
- package/lib/controller/cli-menu/main-menu.d.ts +6 -0
- package/lib/controller/cli-menu/main-menu.d.ts.map +1 -0
- package/lib/controller/cli-menu/main-menu.js +74 -0
- package/lib/controller/yargs-router/cli-router.d.ts +14 -0
- package/lib/controller/yargs-router/cli-router.d.ts.map +1 -0
- package/lib/controller/yargs-router/cli-router.js +171 -0
- package/lib/controller/yargs-router/git-router.d.ts +10 -0
- package/lib/controller/yargs-router/git-router.d.ts.map +1 -0
- package/lib/controller/yargs-router/git-router.js +207 -0
- package/lib/controller/yargs-router/npm-router.d.ts +7 -0
- package/lib/controller/yargs-router/npm-router.d.ts.map +1 -0
- package/lib/controller/yargs-router/npm-router.js +94 -0
- package/lib/dal/shell-dal.d.ts +12 -0
- package/lib/dal/shell-dal.d.ts.map +1 -0
- package/lib/dal/shell-dal.js +61 -0
- package/lib/index-cli.d.ts +2 -0
- package/lib/index-cli.d.ts.map +1 -0
- package/lib/index-cli.js +14 -0
- package/lib/index-init.d.ts +2 -0
- package/lib/index-init.d.ts.map +1 -0
- package/lib/index-init.js +16 -0
- package/lib/index-jest-setup.d.ts +6 -0
- package/lib/index-jest-setup.d.ts.map +1 -0
- package/lib/index-jest-setup.js +10 -0
- package/lib/index-server.d.ts +2 -0
- package/lib/index-server.d.ts.map +1 -0
- package/lib/index-server.js +9 -0
- package/lib/index-terminal-ui.d.ts +2 -0
- package/lib/index-terminal-ui.d.ts.map +1 -0
- package/lib/index-terminal-ui.js +9 -0
- package/lib/model/command/init-config.d.ts +5 -0
- package/lib/model/command/init-config.d.ts.map +1 -0
- package/lib/model/command/init-config.js +53 -0
- package/lib/model/command/interfaces.d.ts +12 -0
- package/lib/model/command/interfaces.d.ts.map +1 -0
- package/lib/model/command/interfaces.js +1 -0
- package/lib/model/command/project-command/git-clone-project-command.d.ts +15 -0
- package/lib/model/command/project-command/git-clone-project-command.d.ts.map +1 -0
- package/lib/model/command/project-command/git-clone-project-command.js +77 -0
- package/lib/model/command/project-command/git-simple-project-command.d.ts +16 -0
- package/lib/model/command/project-command/git-simple-project-command.d.ts.map +1 -0
- package/lib/model/command/project-command/git-simple-project-command.js +70 -0
- package/lib/model/command/project-command/git-tag-project-command.d.ts +12 -0
- package/lib/model/command/project-command/git-tag-project-command.d.ts.map +1 -0
- package/lib/model/command/project-command/git-tag-project-command.js +73 -0
- package/lib/model/command/project-command/npm-global-project-command.d.ts +21 -0
- package/lib/model/command/project-command/npm-global-project-command.d.ts.map +1 -0
- package/lib/model/command/project-command/npm-global-project-command.js +217 -0
- package/lib/model/command/project-command/npm-install-project-command.d.ts +9 -0
- package/lib/model/command/project-command/npm-install-project-command.d.ts.map +1 -0
- package/lib/model/command/project-command/npm-install-project-command.js +66 -0
- package/lib/model/command/project-command/project-command.d.ts +15 -0
- package/lib/model/command/project-command/project-command.d.ts.map +1 -0
- package/lib/model/command/project-command/project-command.js +69 -0
- package/lib/package.json +1 -0
- package/lib/service/clear-service.d.ts +2 -0
- package/lib/service/clear-service.d.ts.map +1 -0
- package/lib/service/clear-service.js +24 -0
- package/lib/service/file-service.d.ts +7 -0
- package/lib/service/file-service.d.ts.map +1 -0
- package/lib/service/file-service.js +14 -0
- package/lib/service/init-config-service.d.ts +7 -0
- package/lib/service/init-config-service.d.ts.map +1 -0
- package/lib/service/init-config-service.js +55 -0
- package/lib/service/shell-service.d.ts +12 -0
- package/lib/service/shell-service.d.ts.map +1 -0
- package/lib/service/shell-service.js +64 -0
- package/lib/service/terminal-wrapper.d.ts +12 -0
- package/lib/service/terminal-wrapper.d.ts.map +1 -0
- package/lib/service/terminal-wrapper.js +72 -0
- package/lib/util/base-menu.d.ts +12 -0
- package/lib/util/base-menu.d.ts.map +1 -0
- package/lib/util/base-menu.js +134 -0
- package/lib/util/config.d.ts +21 -0
- package/lib/util/config.d.ts.map +1 -0
- package/lib/util/config.js +50 -0
- package/lib/util/constant.d.ts +5 -0
- package/lib/util/constant.d.ts.map +1 -0
- package/lib/util/constant.js +15 -0
- package/lib/util/logger.d.ts +3 -0
- package/lib/util/logger.d.ts.map +1 -0
- package/lib/util/logger.js +20 -0
- package/lib/util/object-util.d.ts +4 -0
- package/lib/util/object-util.d.ts.map +1 -0
- package/lib/util/object-util.js +15 -0
- package/lib/util/sub-menu.d.ts +8 -0
- package/lib/util/sub-menu.d.ts.map +1 -0
- package/lib/util/sub-menu.js +85 -0
- package/lib/util/update-notifier-util.d.ts +4 -0
- package/lib/util/update-notifier-util.d.ts.map +1 -0
- package/lib/util/update-notifier-util.js +35 -0
- package/package.json +216 -156
- package/CHANGELOG.md +0 -91
- package/package-lock.json +0 -26727
package/CHANGELOG.md
DELETED
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
## [1.2.2](https://github.com/beecode-rs/msh-cli/compare/v1.2.1...v1.2.2) (2022-05-28)
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Bug Fixes
|
|
5
|
-
|
|
6
|
-
* use project prefix in git clone command ([7a4fd47](https://github.com/beecode-rs/msh-cli/commit/7a4fd47632e2986cfc399c52ce4cd37a7493cb35))
|
|
7
|
-
|
|
8
|
-
## [1.2.1](https://github.com/beecode-rs/msh-cli/compare/v1.2.0...v1.2.1) (2022-02-27)
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
### Bug Fixes
|
|
12
|
-
|
|
13
|
-
* update package.json ([bac0432](https://github.com/beecode-rs/msh-cli/commit/bac0432347e0984419f0d7fdb180610cd040bdcf))
|
|
14
|
-
|
|
15
|
-
# [1.2.0](https://github.com/beecode-rs/msh-cli/compare/v1.1.1...v1.2.0) (2021-12-12)
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
### Features
|
|
19
|
-
|
|
20
|
-
* cli version update notifications, cleanup help ([995f5ff](https://github.com/beecode-rs/msh-cli/commit/995f5ff49e375b240f460e30708b02746bb8ef3a))
|
|
21
|
-
|
|
22
|
-
## [1.1.1](https://github.com/beecode-rs/msh-cli/compare/v1.1.0...v1.1.1) (2021-12-11)
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
### Bug Fixes
|
|
26
|
-
|
|
27
|
-
* git tag cmd output and wrap search phrase with `"` ([983e866](https://github.com/beecode-rs/msh-cli/commit/983e8661fa6c25656f3991d75f2d8f04d18bc08d))
|
|
28
|
-
|
|
29
|
-
# [1.1.0](https://github.com/beecode-rs/msh-cli/compare/v1.0.6...v1.1.0) (2021-12-11)
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
### Features
|
|
33
|
-
|
|
34
|
-
* git tag command ([ae0b4be](https://github.com/beecode-rs/msh-cli/commit/ae0b4be67435f610121431582a42dcb5fd644efc))
|
|
35
|
-
|
|
36
|
-
## [1.0.6](https://github.com/beecode-rs/msh-cli/compare/v1.0.5...v1.0.6) (2021-12-07)
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
### Bug Fixes
|
|
40
|
-
|
|
41
|
-
* use yargs ([3c6abca](https://github.com/beecode-rs/msh-cli/commit/3c6abcaa4171813246b159ecbf321800dbfadade))
|
|
42
|
-
|
|
43
|
-
## [1.0.5](https://github.com/beecode-rs/msh-cli/compare/v1.0.4...v1.0.5) (2021-09-16)
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
### Bug Fixes
|
|
47
|
-
|
|
48
|
-
* use package.json ([e61f967](https://github.com/beecode-rs/msh-cli/commit/e61f9677f5f0f68d72bc1a80fe574cc8a8344088))
|
|
49
|
-
|
|
50
|
-
## [1.0.4](https://github.com/beecode-rs/msh-cli/compare/v1.0.3...v1.0.4) (2021-04-16)
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
### Bug Fixes
|
|
54
|
-
|
|
55
|
-
* update package.json ([f668cc8](https://github.com/beecode-rs/msh-cli/commit/f668cc84b0b441efe86441f0cfbec7736229ee09))
|
|
56
|
-
|
|
57
|
-
## [1.0.3](https://github.com/beecode-rs/msh-cli/compare/v1.0.2...v1.0.3) (2021-03-17)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
### Bug Fixes
|
|
61
|
-
|
|
62
|
-
* remove npm-force-resolutions ([80515d3](https://github.com/beecode-rs/msh-cli/commit/80515d36b60b9fd750bc1dc01d5d2784beb3e1db))
|
|
63
|
-
|
|
64
|
-
## [1.0.2](https://github.com/beecode-rs/msh-cli/compare/v1.0.1...v1.0.2) (2021-02-26)
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
### Bug Fixes
|
|
68
|
-
|
|
69
|
-
* disable audit fix ([074082c](https://github.com/beecode-rs/msh-cli/commit/074082c41f1161df1b755d2faafb5344592269aa))
|
|
70
|
-
* log update ([90e488a](https://github.com/beecode-rs/msh-cli/commit/90e488a4c135b5d059bf3a24cae62637aeb1b5f0))
|
|
71
|
-
* npm-force-resolutions problem ([bab90b9](https://github.com/beecode-rs/msh-cli/commit/bab90b94973e51f9aaca1bbd273b3baa277afcfd))
|
|
72
|
-
* package-lock.json ([dace43c](https://github.com/beecode-rs/msh-cli/commit/dace43c0617ae0170f8a87de1d3cea6ce44a8626))
|
|
73
|
-
|
|
74
|
-
## [1.0.1](https://github.com/beecode-rs/msh-cli/compare/v1.0.0...v1.0.1) (2021-02-12)
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
### Bug Fixes
|
|
78
|
-
|
|
79
|
-
* update packages ([492d847](https://github.com/beecode-rs/msh-cli/commit/492d847d13419d25418598ef6c603e1ff12a880d))
|
|
80
|
-
|
|
81
|
-
# [1.0.0](https://github.com/beecode-rs/msh-cli/compare/v0.1.8...v1.0.0) (2021-01-05)
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
### chore
|
|
85
|
-
|
|
86
|
-
* update deploy process ([f16454f](https://github.com/beecode-rs/msh-cli/commit/f16454feb76485d0d22a06486aaae93df54de154))
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
### BREAKING CHANGES
|
|
90
|
-
|
|
91
|
-
* bump version
|