@beecode/msh-cli 1.2.2 → 1.2.5
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/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 +4 -4
- 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 -3
- 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 +4 -4
- 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 -3
- 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 +10 -6
- 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 +26 -16
- 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 +40 -39
- 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 +21 -20
- 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 +6 -6
- package/dist/index-cli.d.ts +2 -0
- package/dist/index-cli.d.ts.map +1 -0
- package/dist/index-cli.js +6 -8
- package/dist/index-init.d.ts +2 -0
- package/dist/index-init.d.ts.map +1 -0
- package/dist/index-init.js +4 -7
- package/dist/index-server.d.ts +2 -0
- package/dist/index-server.d.ts.map +1 -0
- package/dist/index-server.js +4 -6
- 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 +4 -6
- 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 +2 -2
- 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 +1 -1
- 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 +6 -5
- 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 +4 -4
- 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 +11 -5
- 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 +19 -14
- 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 +4 -4
- 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 +4 -4
- 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 +3 -3
- 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 +1 -1
- 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 +10 -9
- 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 +18 -14
- 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 +3 -3
- 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 +15 -8
- package/dist/util/config.d.ts +21 -0
- package/dist/util/config.d.ts.map +1 -0
- package/dist/util/config.js +34 -32
- package/dist/util/constant.d.ts +5 -0
- package/dist/util/constant.d.ts.map +1 -0
- package/dist/util/constant.js +3 -3
- package/dist/util/logger.d.ts +3 -0
- package/dist/util/logger.d.ts.map +1 -0
- package/dist/util/logger.js +12 -10
- 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 +1 -1
- 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 +6 -4
- 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 +2 -2
- package/package.json +130 -115
- package/CHANGELOG.md +0 -91
- package/package-lock.json +0 -26727
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.