@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.
Files changed (103) hide show
  1. package/bin/msh.js +1 -1
  2. package/dist/app/cli-app.d.ts +5 -0
  3. package/dist/app/cli-app.d.ts.map +1 -0
  4. package/dist/app/cli-app.js +4 -4
  5. package/dist/app/http-server-app.d.ts +5 -0
  6. package/dist/app/http-server-app.d.ts.map +1 -0
  7. package/dist/app/http-server-app.js +3 -3
  8. package/dist/app/init/parse-and-route-args.d.ts +8 -0
  9. package/dist/app/init/parse-and-route-args.d.ts.map +1 -0
  10. package/dist/app/init/parse-and-route-args.js +4 -4
  11. package/dist/app/tui-app.d.ts +5 -0
  12. package/dist/app/tui-app.d.ts.map +1 -0
  13. package/dist/app/tui-app.js +3 -3
  14. package/dist/controller/cli-menu/main-menu.d.ts +6 -0
  15. package/dist/controller/cli-menu/main-menu.d.ts.map +1 -0
  16. package/dist/controller/cli-menu/main-menu.js +10 -6
  17. package/dist/controller/yargs-router/cli-router.d.ts +14 -0
  18. package/dist/controller/yargs-router/cli-router.d.ts.map +1 -0
  19. package/dist/controller/yargs-router/cli-router.js +26 -16
  20. package/dist/controller/yargs-router/git-router.d.ts +10 -0
  21. package/dist/controller/yargs-router/git-router.d.ts.map +1 -0
  22. package/dist/controller/yargs-router/git-router.js +40 -39
  23. package/dist/controller/yargs-router/npm-router.d.ts +7 -0
  24. package/dist/controller/yargs-router/npm-router.d.ts.map +1 -0
  25. package/dist/controller/yargs-router/npm-router.js +21 -20
  26. package/dist/dal/shell-dal.d.ts +12 -0
  27. package/dist/dal/shell-dal.d.ts.map +1 -0
  28. package/dist/dal/shell-dal.js +6 -6
  29. package/dist/index-cli.d.ts +2 -0
  30. package/dist/index-cli.d.ts.map +1 -0
  31. package/dist/index-cli.js +6 -8
  32. package/dist/index-init.d.ts +2 -0
  33. package/dist/index-init.d.ts.map +1 -0
  34. package/dist/index-init.js +4 -7
  35. package/dist/index-server.d.ts +2 -0
  36. package/dist/index-server.d.ts.map +1 -0
  37. package/dist/index-server.js +4 -6
  38. package/dist/index-terminal-ui.d.ts +2 -0
  39. package/dist/index-terminal-ui.d.ts.map +1 -0
  40. package/dist/index-terminal-ui.js +4 -6
  41. package/dist/model/command/init-config.d.ts +5 -0
  42. package/dist/model/command/init-config.d.ts.map +1 -0
  43. package/dist/model/command/init-config.js +2 -2
  44. package/dist/model/command/interfaces.d.ts +12 -0
  45. package/dist/model/command/interfaces.d.ts.map +1 -0
  46. package/dist/model/command/interfaces.js +1 -1
  47. package/dist/model/command/project-command/git-clone-project-command.d.ts +15 -0
  48. package/dist/model/command/project-command/git-clone-project-command.d.ts.map +1 -0
  49. package/dist/model/command/project-command/git-clone-project-command.js +6 -5
  50. package/dist/model/command/project-command/git-simple-project-command.d.ts +16 -0
  51. package/dist/model/command/project-command/git-simple-project-command.d.ts.map +1 -0
  52. package/dist/model/command/project-command/git-simple-project-command.js +4 -4
  53. package/dist/model/command/project-command/git-tag-project-command.d.ts +12 -0
  54. package/dist/model/command/project-command/git-tag-project-command.d.ts.map +1 -0
  55. package/dist/model/command/project-command/git-tag-project-command.js +11 -5
  56. package/dist/model/command/project-command/npm-global-project-command.d.ts +21 -0
  57. package/dist/model/command/project-command/npm-global-project-command.d.ts.map +1 -0
  58. package/dist/model/command/project-command/npm-global-project-command.js +19 -14
  59. package/dist/model/command/project-command/npm-install-project-command.d.ts +9 -0
  60. package/dist/model/command/project-command/npm-install-project-command.d.ts.map +1 -0
  61. package/dist/model/command/project-command/npm-install-project-command.js +4 -4
  62. package/dist/model/command/project-command/project-command.d.ts +15 -0
  63. package/dist/model/command/project-command/project-command.d.ts.map +1 -0
  64. package/dist/model/command/project-command/project-command.js +4 -4
  65. package/dist/service/clear-service.d.ts +2 -0
  66. package/dist/service/clear-service.d.ts.map +1 -0
  67. package/dist/service/clear-service.js +3 -3
  68. package/dist/service/file-service.d.ts +7 -0
  69. package/dist/service/file-service.d.ts.map +1 -0
  70. package/dist/service/file-service.js +1 -1
  71. package/dist/service/init-config-service.d.ts +7 -0
  72. package/dist/service/init-config-service.d.ts.map +1 -0
  73. package/dist/service/init-config-service.js +10 -9
  74. package/dist/service/shell-service.d.ts +12 -0
  75. package/dist/service/shell-service.d.ts.map +1 -0
  76. package/dist/service/shell-service.js +18 -14
  77. package/dist/service/terminal-wrapper.d.ts +12 -0
  78. package/dist/service/terminal-wrapper.d.ts.map +1 -0
  79. package/dist/service/terminal-wrapper.js +3 -3
  80. package/dist/util/base-menu.d.ts +12 -0
  81. package/dist/util/base-menu.d.ts.map +1 -0
  82. package/dist/util/base-menu.js +15 -8
  83. package/dist/util/config.d.ts +21 -0
  84. package/dist/util/config.d.ts.map +1 -0
  85. package/dist/util/config.js +34 -32
  86. package/dist/util/constant.d.ts +5 -0
  87. package/dist/util/constant.d.ts.map +1 -0
  88. package/dist/util/constant.js +3 -3
  89. package/dist/util/logger.d.ts +3 -0
  90. package/dist/util/logger.d.ts.map +1 -0
  91. package/dist/util/logger.js +12 -10
  92. package/dist/util/object-util.d.ts +4 -0
  93. package/dist/util/object-util.d.ts.map +1 -0
  94. package/dist/util/object-util.js +1 -1
  95. package/dist/util/sub-menu.d.ts +8 -0
  96. package/dist/util/sub-menu.d.ts.map +1 -0
  97. package/dist/util/sub-menu.js +6 -4
  98. package/dist/util/update-notifier-util.d.ts +4 -0
  99. package/dist/util/update-notifier-util.d.ts.map +1 -0
  100. package/dist/util/update-notifier-util.js +2 -2
  101. package/package.json +130 -115
  102. package/CHANGELOG.md +0 -91
  103. 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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXBkYXRlLW5vdGlmaWVyLXV0aWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdXRpbC91cGRhdGUtbm90aWZpZXItdXRpbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7QUFBQSxzRUFBNEM7QUFFNUMsTUFBTSxXQUFXLEdBQUcsT0FBTyxDQUFDLG9CQUFvQixDQUFDLENBQUEsQ0FBQyxzQkFBc0I7QUFFM0QsUUFBQSxrQkFBa0IsR0FBRztJQUNoQyxLQUFLLEVBQUUsR0FBUyxFQUFFO1FBQ2hCLElBQUEseUJBQWMsRUFBQyxFQUFFLEdBQUcsRUFBRSxXQUFXLEVBQUUsQ0FBQyxDQUFDLE1BQU0sRUFBRSxDQUFBO0lBQy9DLENBQUM7Q0FDRixDQUFBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHVwZGF0ZU5vdGlmaWVyIGZyb20gJ3VwZGF0ZS1ub3RpZmllcidcblxuY29uc3QgcGFja2FnZUpzb24gPSByZXF1aXJlKCcuLi8uLi9wYWNrYWdlLmpzb24nKSAvLyBlc2xpbnQtZGlzYWJsZS1saW5lXG5cbmV4cG9ydCBjb25zdCB1cGRhdGVOb3RpZmllclV0aWwgPSB7XG4gIGNoZWNrOiAoKTogdm9pZCA9PiB7XG4gICAgdXBkYXRlTm90aWZpZXIoeyBwa2c6IHBhY2thZ2VKc29uIH0pLm5vdGlmeSgpXG4gIH0sXG59XG4iXX0=
14
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXBkYXRlLW5vdGlmaWVyLXV0aWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvdXRpbC91cGRhdGUtbm90aWZpZXItdXRpbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7QUFBQSxzRUFBNEM7QUFFNUMsTUFBTSxXQUFXLEdBQUcsT0FBTyxDQUFDLG9CQUFvQixDQUFDLENBQUEsQ0FBQyxzQkFBc0I7QUFFM0QsUUFBQSxrQkFBa0IsR0FBRztJQUNqQyxLQUFLLEVBQUUsS0FBSyxJQUFtQixFQUFFO1FBQ2hDLElBQUEseUJBQWMsRUFBQyxFQUFFLEdBQUcsRUFBRSxXQUFXLEVBQUUsQ0FBQyxDQUFDLE1BQU0sRUFBRSxDQUFBO0lBQzlDLENBQUM7Q0FDRCxDQUFBIn0=
package/package.json CHANGED
@@ -1,158 +1,173 @@
1
1
  {
2
- "_moduleAliases": {
3
- "src": "./dist"
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
- "bugs": {
10
- "url": "https://github.com/beecode-rs/msh-cli/issues"
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-node-app": "1.0.2",
24
- "@beecode/msh-node-env": "1.1.2",
25
- "@beecode/msh-node-log": "2.2.2",
26
- "@beecode/msh-node-util": "3.2.1",
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": "4.1.3",
30
- "dotenv": "16.0.0",
101
+ "compare-versions": "5.0.3",
102
+ "dotenv": "16.0.3",
31
103
  "fast-json-stable-stringify": "2.1.0",
32
- "inquirer": "8.2.0",
104
+ "inquirer": "9.2.5",
33
105
  "lodash": "4.17.21",
34
- "minimist": "1.2.5",
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.3.1"
112
+ "yargs": "17.7.2"
43
113
  },
44
- "description": "MicroService Shell helper",
45
114
  "devDependencies": {
46
- "@commitlint/cli": "16.2.1",
47
- "@commitlint/config-conventional": "16.2.1",
48
- "@commitlint/prompt": "16.2.1",
49
- "@istanbuljs/nyc-config-typescript": "1.0.2",
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.2",
55
- "@semantic-release/release-notes-generator": "10.0.3",
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": "8.2.0",
62
- "@types/lodash": "4.14.179",
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": "17.0.21",
133
+ "@types/node": "20.2.1",
69
134
  "@types/request": "2.48.8",
70
- "@types/shelljs": "0.8.11",
71
- "@types/sinon": "10.0.11",
72
- "@types/source-map-support": "0.5.4",
73
- "@types/yargs": "17.0.8",
74
- "@typescript-eslint/eslint-plugin": "5.12.1",
75
- "@typescript-eslint/parser": "5.12.1",
76
- "chai": "4.3.6",
77
- "codecov": "3.8.2",
78
- "commitizen": "4.2.4",
79
- "eslint": "8.10.0",
80
- "eslint-config-prettier": "8.4.0",
81
- "eslint-plugin-import": "2.25.4",
82
- "husky": "7.0.4",
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
- "mocha": "9.2.1",
85
- "nyc": "15.1.0",
86
- "pinst": "3.0.0",
87
- "prettier": "2.5.1",
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-node": "10.5.0",
94
- "tsc-watch": "4.6.0",
95
- "tsconfig-lint": "0.12.0",
96
- "typescript": "4.5.5"
97
- },
98
- "files": [
99
- "dist",
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
- "version": "1.2.2"
169
+ "engines": {
170
+ "node": ">=14",
171
+ "npm": ">=6"
172
+ }
158
173
  }
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