@beecode/msh-cli 1.2.1 → 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 +7 -6
- 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 -84
- package/package-lock.json +0 -26727
|
@@ -7,8 +7,8 @@ exports.updateNotifierUtil = void 0;
|
|
|
7
7
|
const update_notifier_1 = __importDefault(require("update-notifier"));
|
|
8
8
|
const packageJson = require('../../package.json'); // eslint-disable-line
|
|
9
9
|
exports.updateNotifierUtil = {
|
|
10
|
-
check: () => {
|
|
10
|
+
check: async () => {
|
|
11
11
|
(0, update_notifier_1.default)({ pkg: packageJson }).notify();
|
|
12
12
|
},
|
|
13
13
|
};
|
|
14
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXBkYXRlLW5vdGlmaWVyLXV0aWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdXRpbC91cGRhdGUtbm90aWZpZXItdXRpbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7QUFBQSxzRUFBNEM7QUFFNUMsTUFBTSxXQUFXLEdBQUcsT0FBTyxDQUFDLG9CQUFvQixDQUFDLENBQUEsQ0FBQyxzQkFBc0I7QUFFM0QsUUFBQSxrQkFBa0IsR0FBRztJQUNqQyxLQUFLLEVBQUUsS0FBSyxJQUFtQixFQUFFO1FBQ2hDLElBQUEseUJBQWMsRUFBQyxFQUFFLEdBQUcsRUFBRSxXQUFXLEVBQUUsQ0FBQyxDQUFDLE1BQU0sRUFBRSxDQUFBO0lBQzlDLENBQUM7Q0FDRCxDQUFBIn0=
|
package/package.json
CHANGED
|
@@ -1,158 +1,173 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
|
|
2
|
+
"name": "@beecode/msh-cli",
|
|
3
|
+
"version": "1.2.5",
|
|
4
|
+
"description": "MicroService Shell helper",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"shell",
|
|
7
|
+
"microservice",
|
|
8
|
+
"management",
|
|
9
|
+
"project"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/beecode-rs/msh-cli#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/beecode-rs/msh-cli/issues"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/beecode-rs/msh-cli.git"
|
|
4
18
|
},
|
|
19
|
+
"license": "mit",
|
|
5
20
|
"author": "Milos Bugarinovic <milos.bugarinovic@gmail.com> (http://milos.bugarinovic.com)",
|
|
21
|
+
"main": "./dist/index.js",
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
6
23
|
"bin": {
|
|
7
24
|
"msh": "./bin/msh.js"
|
|
8
25
|
},
|
|
9
|
-
"
|
|
10
|
-
"
|
|
26
|
+
"files": [
|
|
27
|
+
"./dist",
|
|
28
|
+
"./bin",
|
|
29
|
+
"./package-lock.json"
|
|
30
|
+
],
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "npm run clean && npm run tsc && npm run tsc:alias",
|
|
33
|
+
"build:on-success": "npm run tsc:cleaner && npm run tsc:alias",
|
|
34
|
+
"build:watch": "npm run clean && npm run tsc:watch -- --onCompilationComplete 'npm run build:on-success'",
|
|
35
|
+
"bump-version": "npm --no-git-tag-version version",
|
|
36
|
+
"clean": "rimraf ./dist/*",
|
|
37
|
+
"debug": "node --inspect -r ts-node/register ./src/index.ts",
|
|
38
|
+
"doc:api": "npx typedoc",
|
|
39
|
+
"doc:toc": "npx markdown-toc -i ./README.md",
|
|
40
|
+
"docker:build": "docker build -f ./.docker/Dockerfile -t bc-msh-env ./",
|
|
41
|
+
"docker:exec": "docker run --rm bc-msh-env",
|
|
42
|
+
"docker:exec:sh": "docker run --rm -it bc-msh-env sh",
|
|
43
|
+
"docker:rmi": "docker rmi bc-msh-env",
|
|
44
|
+
"eslint": "eslint ./ --quiet",
|
|
45
|
+
"eslint:fix": "npm run eslint -- --fix",
|
|
46
|
+
"initial-setup": "npm run initial-setup:husky && npm run initial-setup:git-config",
|
|
47
|
+
"initial-setup:git-config": "git config include.path ./.git-config",
|
|
48
|
+
"initial-setup:husky": "npx husky install",
|
|
49
|
+
"jsonlint": "npm run jsonlint:fix -- -c",
|
|
50
|
+
"jsonlint:fix": "jsonsort * '!./test/node_modules' '!./resource' '!**/.env*'",
|
|
51
|
+
"lint": "npm run prettier && npm run eslint && npm run jsonlint",
|
|
52
|
+
"lint:fix": "npm run prettier:fix && npm run eslint:fix && npm run jsonlint:fix",
|
|
53
|
+
"pack": "npm pack --pack-destination=./packages",
|
|
54
|
+
"prettier": "prettier --check {**/*,*}.{js,jsx,ts,tsx}",
|
|
55
|
+
"prettier:fix": "prettier --write {**/*,*}.{js,jsx,ts,tsx}",
|
|
56
|
+
"semantic-release": "semantic-release",
|
|
57
|
+
"semantic-release:check": "npm run semantic-release -- --dry-run --no-ci",
|
|
58
|
+
"start": "node ./dist/index.js",
|
|
59
|
+
"start:ts": "ts-node ./src/index.ts",
|
|
60
|
+
"test": "npm run test:unit #&& npm run test:int",
|
|
61
|
+
"test:e2e": "TZ=utc jest --config=./test/jest.config.js",
|
|
62
|
+
"test:int": "TZ=utc jest --config=./jest-int.config.js",
|
|
63
|
+
"test:unit": "TZ=utc jest --config=./jest-unit.config.js",
|
|
64
|
+
"test:unit:coverage": "npm run test:unit -- --coverage",
|
|
65
|
+
"test:unit:coverage:publish": "codecov",
|
|
66
|
+
"tsc": "tsc -p ./tsconfig-build.json",
|
|
67
|
+
"tsc:alias": "tsc-alias -p ./tsconfig-build.json",
|
|
68
|
+
"tsc:check": "npm run tsc -- --noEmit",
|
|
69
|
+
"tsc:check:list-files": "npm run tsc:check -- --listFiles",
|
|
70
|
+
"tsc:cleaner": "ts-cleaner --dist ./dist",
|
|
71
|
+
"tsc:cleaner:watch": "npm run tsc:cleaner -- --watch",
|
|
72
|
+
"tsc:time": "npm run tsc -- --diagnostics",
|
|
73
|
+
"tsc:watch": "tsc-watch -p ./tsconfig-build.json --preserveWatchOutput"
|
|
11
74
|
},
|
|
12
75
|
"commitlint": {
|
|
13
76
|
"extends": [
|
|
14
77
|
"@commitlint/config-conventional"
|
|
15
78
|
]
|
|
16
79
|
},
|
|
80
|
+
"lint-staged": {
|
|
81
|
+
"**.*.json": [
|
|
82
|
+
"npm run jsonlint"
|
|
83
|
+
],
|
|
84
|
+
"**/*.{ts,tsx,js,jsx}": [
|
|
85
|
+
"eslint",
|
|
86
|
+
"prettier --check"
|
|
87
|
+
]
|
|
88
|
+
},
|
|
17
89
|
"config": {
|
|
18
90
|
"commitizen": {
|
|
19
91
|
"path": "node_modules/cz-conventional-changelog"
|
|
20
92
|
}
|
|
21
93
|
},
|
|
22
94
|
"dependencies": {
|
|
23
|
-
"@beecode/msh-
|
|
24
|
-
"@beecode/msh-
|
|
25
|
-
"@beecode/msh-
|
|
26
|
-
"@beecode/msh-
|
|
95
|
+
"@beecode/msh-app-boot": "0.1.1",
|
|
96
|
+
"@beecode/msh-env": "0.1.2",
|
|
97
|
+
"@beecode/msh-logger": "0.2.1",
|
|
98
|
+
"@beecode/msh-util": "1.2.1",
|
|
27
99
|
"async-shelljs": "0.1.4",
|
|
28
100
|
"chalk": "4.1.2",
|
|
29
|
-
"compare-versions": "
|
|
30
|
-
"dotenv": "16.0.
|
|
101
|
+
"compare-versions": "5.0.3",
|
|
102
|
+
"dotenv": "16.0.3",
|
|
31
103
|
"fast-json-stable-stringify": "2.1.0",
|
|
32
|
-
"inquirer": "
|
|
104
|
+
"inquirer": "9.2.5",
|
|
33
105
|
"lodash": "4.17.21",
|
|
34
|
-
"minimist": "1.2.
|
|
106
|
+
"minimist": "1.2.8",
|
|
35
107
|
"minimist-options": "4.1.0",
|
|
36
|
-
"module-alias": "2.2.2",
|
|
37
108
|
"mz": "2.7.0",
|
|
38
109
|
"request": "2.88.2",
|
|
39
110
|
"request-promise-native": "1.0.9",
|
|
40
|
-
"source-map-support": "0.5.21",
|
|
41
111
|
"update-notifier": "5.1.0",
|
|
42
|
-
"yargs": "17.
|
|
112
|
+
"yargs": "17.7.2"
|
|
43
113
|
},
|
|
44
|
-
"description": "MicroService Shell helper",
|
|
45
114
|
"devDependencies": {
|
|
46
|
-
"@commitlint/cli": "
|
|
47
|
-
"@commitlint/config-conventional": "
|
|
48
|
-
"@commitlint/prompt": "
|
|
49
|
-
"@
|
|
50
|
-
"@semantic-release/changelog": "6.0.1",
|
|
115
|
+
"@commitlint/cli": "17.6.3",
|
|
116
|
+
"@commitlint/config-conventional": "17.6.3",
|
|
117
|
+
"@commitlint/prompt": "17.6.3",
|
|
118
|
+
"@semantic-release/changelog": "6.0.3",
|
|
51
119
|
"@semantic-release/commit-analyzer": "9.0.2",
|
|
52
120
|
"@semantic-release/exec": "6.0.3",
|
|
53
121
|
"@semantic-release/git": "10.0.1",
|
|
54
|
-
"@semantic-release/github": "8.0.
|
|
55
|
-
"@semantic-release/release-notes-generator": "
|
|
56
|
-
"@types/chai": "4.3.0",
|
|
122
|
+
"@semantic-release/github": "8.0.7",
|
|
123
|
+
"@semantic-release/release-notes-generator": "11.0.1",
|
|
57
124
|
"@types/chalk": "2.2.0",
|
|
58
125
|
"@types/compare-versions": "3.3.0",
|
|
59
|
-
"@types/dotenv": "8.2.0",
|
|
60
126
|
"@types/fast-json-stable-stringify": "2.0.0",
|
|
61
|
-
"@types/inquirer": "
|
|
62
|
-
"@types/
|
|
127
|
+
"@types/inquirer": "9.0.3",
|
|
128
|
+
"@types/jest": "29.5.1",
|
|
129
|
+
"@types/lodash": "4.14.194",
|
|
63
130
|
"@types/minimist": "1.2.2",
|
|
64
131
|
"@types/minimist-options": "3.0.0",
|
|
65
|
-
"@types/mocha": "9.1.0",
|
|
66
|
-
"@types/module-alias": "2.0.1",
|
|
67
132
|
"@types/mz": "2.7.4",
|
|
68
|
-
"@types/node": "
|
|
133
|
+
"@types/node": "20.2.1",
|
|
69
134
|
"@types/request": "2.48.8",
|
|
70
|
-
"@types/shelljs": "0.8.
|
|
71
|
-
"@types/
|
|
72
|
-
"@types/
|
|
73
|
-
"@types/yargs": "17.0.
|
|
74
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
75
|
-
"@typescript-eslint/parser": "5.
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"eslint": "
|
|
80
|
-
"eslint-
|
|
81
|
-
"eslint-plugin-
|
|
82
|
-
"
|
|
135
|
+
"@types/shelljs": "0.8.12",
|
|
136
|
+
"@types/source-map-support": "0.5.6",
|
|
137
|
+
"@types/update-notifier": "5.1.0",
|
|
138
|
+
"@types/yargs": "17.0.24",
|
|
139
|
+
"@typescript-eslint/eslint-plugin": "5.59.6",
|
|
140
|
+
"@typescript-eslint/parser": "5.59.6",
|
|
141
|
+
"commitizen": "4.3.0",
|
|
142
|
+
"eslint": "8.41.0",
|
|
143
|
+
"eslint-config-prettier": "8.8.0",
|
|
144
|
+
"eslint-plugin-import": "2.27.5",
|
|
145
|
+
"eslint-plugin-jest": "27.2.1",
|
|
146
|
+
"eslint-plugin-no-loops": "0.3.0",
|
|
147
|
+
"eslint-plugin-no-only-tests": "3.1.0",
|
|
148
|
+
"eslint-plugin-prettier": "4.2.1",
|
|
149
|
+
"eslint-plugin-sort-keys-fix": "1.1.2",
|
|
150
|
+
"husky": "8.0.3",
|
|
151
|
+
"jest": "29.5.0",
|
|
152
|
+
"jest-extended": "3.2.4",
|
|
153
|
+
"json-sort-cli": "3.1.3",
|
|
154
|
+
"lint-staged": "13.2.2",
|
|
83
155
|
"markdown-toc": "1.2.0",
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
"
|
|
88
|
-
"replace-json-property": "1.8.0",
|
|
89
|
-
"rimraf": "3.0.2",
|
|
90
|
-
"semantic-release": "19.0.2",
|
|
91
|
-
"sinon": "13.0.1",
|
|
156
|
+
"prettier": "2.8.8",
|
|
157
|
+
"rimraf": "5.0.1",
|
|
158
|
+
"semantic-release": "21.0.2",
|
|
159
|
+
"source-map-support": "0.5.21",
|
|
92
160
|
"ts-cleaner": "1.0.5",
|
|
93
|
-
"ts-
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
"
|
|
100
|
-
"bin",
|
|
101
|
-
"package-lock.json"
|
|
102
|
-
],
|
|
103
|
-
"homepage": "https://github.com/beecode-rs/msh-cli#readme",
|
|
104
|
-
"keywords": [
|
|
105
|
-
"shell",
|
|
106
|
-
"microservice",
|
|
107
|
-
"management",
|
|
108
|
-
"project"
|
|
109
|
-
],
|
|
110
|
-
"license": "mit",
|
|
111
|
-
"main": "./dist/index.js",
|
|
112
|
-
"name": "@beecode/msh-cli",
|
|
113
|
-
"repository": {
|
|
114
|
-
"type": "git",
|
|
115
|
-
"url": "https://github.com/beecode-rs/msh-cli.git"
|
|
116
|
-
},
|
|
117
|
-
"resolutions": {
|
|
118
|
-
"ansi-regex": "^5.0.1",
|
|
119
|
-
"diff": "^3.5.0",
|
|
120
|
-
"json-schema": "^0.4.0",
|
|
121
|
-
"minimist": "^0.2.1",
|
|
122
|
-
"y18n": "^5.0.8"
|
|
123
|
-
},
|
|
124
|
-
"scripts": {
|
|
125
|
-
"audit:fix": "npx --yes npm-force-resolutions",
|
|
126
|
-
"build": "npm run clean && npm run tsc",
|
|
127
|
-
"build:watch": "npm run tsc:watch -- --preserveWatchOutput --onSuccess \"npm run tsc:cleaner\"",
|
|
128
|
-
"bump-version": "rjp package.json version",
|
|
129
|
-
"clean": "rimraf ./dist/*",
|
|
130
|
-
"commit": "git-cz",
|
|
131
|
-
"coverage": "nyc npm run test:unit",
|
|
132
|
-
"coverage:publish": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
|
|
133
|
-
"debug": "node --inspect -r ts-node/register ./src/index.ts",
|
|
134
|
-
"doc:toc": "markdown-toc -i ./README.md",
|
|
135
|
-
"eslint": "eslint . --ext .ts --quiet",
|
|
136
|
-
"eslint:fix": "npm run eslint -- --fix",
|
|
137
|
-
"lint": "npm run eslint && npm run prettier",
|
|
138
|
-
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
|
|
139
|
-
"_postinstall": "husky install",
|
|
140
|
-
"postpublish": "pinst --enable",
|
|
141
|
-
"prepublishOnly": "pinst --disable",
|
|
142
|
-
"prettier": "prettier --check \"./src/**/*.{ts,json}\"",
|
|
143
|
-
"prettier:fix": "prettier --write \"./src/**/*.{ts,json}\"",
|
|
144
|
-
"semantic-release": "semantic-release",
|
|
145
|
-
"semantic-release:check": "npm run semantic-release -- --dry-run --no-ci",
|
|
146
|
-
"start": "node ./dist/index.js",
|
|
147
|
-
"start:ts": "ts-node ./src/index.ts",
|
|
148
|
-
"test": "npm run test:unit -- --forbid-only && npm run test:int -- --forbid-only",
|
|
149
|
-
"test:int": "#mocha ./src/test/{**/,/}*.ts",
|
|
150
|
-
"test:unit": "mocha ./src/{**/,/}*.test.ts",
|
|
151
|
-
"tsc": "tsc -p ./tsconfig-build.json",
|
|
152
|
-
"tsc:check": "npm run tsc -- --noEmit",
|
|
153
|
-
"tsc:cleaner": "ts-cleaner --dist dist",
|
|
154
|
-
"tsc:cleaner:watch": "npm run tsc:cleaner -- --watch",
|
|
155
|
-
"tsc:watch": "tsc-watch -p tsconfig-build.json"
|
|
161
|
+
"ts-jest": "29.1.0",
|
|
162
|
+
"ts-node": "10.9.1",
|
|
163
|
+
"tsc-alias": "1.8.6",
|
|
164
|
+
"tsc-watch": "6.0.4",
|
|
165
|
+
"typedoc": "0.24.7",
|
|
166
|
+
"typedoc-plugin-markdown": "3.15.3",
|
|
167
|
+
"typescript": "4.9.5"
|
|
156
168
|
},
|
|
157
|
-
"
|
|
169
|
+
"engines": {
|
|
170
|
+
"node": ">=14",
|
|
171
|
+
"npm": ">=6"
|
|
172
|
+
}
|
|
158
173
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
## [1.2.1](https://github.com/beecode-rs/msh-cli/compare/v1.2.0...v1.2.1) (2022-02-27)
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Bug Fixes
|
|
5
|
-
|
|
6
|
-
* update package.json ([bac0432](https://github.com/beecode-rs/msh-cli/commit/bac0432347e0984419f0d7fdb180610cd040bdcf))
|
|
7
|
-
|
|
8
|
-
# [1.2.0](https://github.com/beecode-rs/msh-cli/compare/v1.1.1...v1.2.0) (2021-12-12)
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
### Features
|
|
12
|
-
|
|
13
|
-
* cli version update notifications, cleanup help ([995f5ff](https://github.com/beecode-rs/msh-cli/commit/995f5ff49e375b240f460e30708b02746bb8ef3a))
|
|
14
|
-
|
|
15
|
-
## [1.1.1](https://github.com/beecode-rs/msh-cli/compare/v1.1.0...v1.1.1) (2021-12-11)
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
### Bug Fixes
|
|
19
|
-
|
|
20
|
-
* git tag cmd output and wrap search phrase with `"` ([983e866](https://github.com/beecode-rs/msh-cli/commit/983e8661fa6c25656f3991d75f2d8f04d18bc08d))
|
|
21
|
-
|
|
22
|
-
# [1.1.0](https://github.com/beecode-rs/msh-cli/compare/v1.0.6...v1.1.0) (2021-12-11)
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
### Features
|
|
26
|
-
|
|
27
|
-
* git tag command ([ae0b4be](https://github.com/beecode-rs/msh-cli/commit/ae0b4be67435f610121431582a42dcb5fd644efc))
|
|
28
|
-
|
|
29
|
-
## [1.0.6](https://github.com/beecode-rs/msh-cli/compare/v1.0.5...v1.0.6) (2021-12-07)
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
### Bug Fixes
|
|
33
|
-
|
|
34
|
-
* use yargs ([3c6abca](https://github.com/beecode-rs/msh-cli/commit/3c6abcaa4171813246b159ecbf321800dbfadade))
|
|
35
|
-
|
|
36
|
-
## [1.0.5](https://github.com/beecode-rs/msh-cli/compare/v1.0.4...v1.0.5) (2021-09-16)
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
### Bug Fixes
|
|
40
|
-
|
|
41
|
-
* use package.json ([e61f967](https://github.com/beecode-rs/msh-cli/commit/e61f9677f5f0f68d72bc1a80fe574cc8a8344088))
|
|
42
|
-
|
|
43
|
-
## [1.0.4](https://github.com/beecode-rs/msh-cli/compare/v1.0.3...v1.0.4) (2021-04-16)
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
### Bug Fixes
|
|
47
|
-
|
|
48
|
-
* update package.json ([f668cc8](https://github.com/beecode-rs/msh-cli/commit/f668cc84b0b441efe86441f0cfbec7736229ee09))
|
|
49
|
-
|
|
50
|
-
## [1.0.3](https://github.com/beecode-rs/msh-cli/compare/v1.0.2...v1.0.3) (2021-03-17)
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
### Bug Fixes
|
|
54
|
-
|
|
55
|
-
* remove npm-force-resolutions ([80515d3](https://github.com/beecode-rs/msh-cli/commit/80515d36b60b9fd750bc1dc01d5d2784beb3e1db))
|
|
56
|
-
|
|
57
|
-
## [1.0.2](https://github.com/beecode-rs/msh-cli/compare/v1.0.1...v1.0.2) (2021-02-26)
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
### Bug Fixes
|
|
61
|
-
|
|
62
|
-
* disable audit fix ([074082c](https://github.com/beecode-rs/msh-cli/commit/074082c41f1161df1b755d2faafb5344592269aa))
|
|
63
|
-
* log update ([90e488a](https://github.com/beecode-rs/msh-cli/commit/90e488a4c135b5d059bf3a24cae62637aeb1b5f0))
|
|
64
|
-
* npm-force-resolutions problem ([bab90b9](https://github.com/beecode-rs/msh-cli/commit/bab90b94973e51f9aaca1bbd273b3baa277afcfd))
|
|
65
|
-
* package-lock.json ([dace43c](https://github.com/beecode-rs/msh-cli/commit/dace43c0617ae0170f8a87de1d3cea6ce44a8626))
|
|
66
|
-
|
|
67
|
-
## [1.0.1](https://github.com/beecode-rs/msh-cli/compare/v1.0.0...v1.0.1) (2021-02-12)
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
### Bug Fixes
|
|
71
|
-
|
|
72
|
-
* update packages ([492d847](https://github.com/beecode-rs/msh-cli/commit/492d847d13419d25418598ef6c603e1ff12a880d))
|
|
73
|
-
|
|
74
|
-
# [1.0.0](https://github.com/beecode-rs/msh-cli/compare/v0.1.8...v1.0.0) (2021-01-05)
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
### chore
|
|
78
|
-
|
|
79
|
-
* update deploy process ([f16454f](https://github.com/beecode-rs/msh-cli/commit/f16454feb76485d0d22a06486aaae93df54de154))
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
### BREAKING CHANGES
|
|
83
|
-
|
|
84
|
-
* bump version
|