@guanghechen/commander 1.0.2 → 1.0.4

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 CHANGED
@@ -3,6 +3,23 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## <small>1.0.4 (2024-10-03)</small>
7
+
8
+ * :arrow_up: chore: upgrade dependencies ([e41de75](https://github.com/guanghechen/node-scaffolds/commit/e41de75))
9
+ * :wrench: chore: don't gen sourcemap in production env ([f7075d1](https://github.com/guanghechen/node-scaffolds/commit/f7075d1))
10
+
11
+
12
+
13
+
14
+
15
+ ## <small>1.0.3 (2024-09-29)</small>
16
+
17
+ **Note:** Version bump only for package @guanghechen/commander
18
+
19
+
20
+
21
+
22
+
6
23
  ## <small>1.0.2 (2024-09-29)</small>
7
24
 
8
25
  * :art: improve(commander): remove unnecessary third-party dependencies ([d5cb553](https://github.com/guanghechen/node-scaffolds/commit/d5cb553))
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  <header>
2
2
  <h1 align="center">
3
- <a href="https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/commander@1.0.2/packages/commander#readme">@guanghechen/commander</a>
3
+ <a href="https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/commander@1.0.4/packages/commander#readme">@guanghechen/commander</a>
4
4
  </h1>
5
5
  <div align="center">
6
6
  <a href="https://www.npmjs.com/package/@guanghechen/commander">
@@ -78,6 +78,6 @@ Utility functions for creating command programs tools based on [commander.js][].
78
78
  * [commander.js][]
79
79
 
80
80
 
81
- [homepage]: https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/commander@1.0.2/packages/commander#readme
81
+ [homepage]: https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/commander@1.0.4/packages/commander#readme
82
82
  [commander.js]: https://github.com/tj/commander.js/
83
83
 
package/lib/cjs/index.cjs CHANGED
@@ -170,4 +170,3 @@ Object.keys(cli).forEach(function (k) {
170
170
  get: function () { return cli[k]; }
171
171
  });
172
172
  });
173
- //# sourceMappingURL=index.cjs.map
package/lib/esm/index.mjs CHANGED
@@ -153,4 +153,3 @@ async function installDependencies(params) {
153
153
  }
154
154
 
155
155
  export { Command, SubCommand, createMainCommandExecutor, createMainCommandMounter, createTopCommand, hasGitInstalled, installDependencies };
156
- //# sourceMappingURL=index.mjs.map
@@ -134,4 +134,3 @@ interface IInstallDependenciesParams {
134
134
  declare function installDependencies(params: IInstallDependenciesParams): Promise<void>;
135
135
 
136
136
  export { Command, type ICommandActionCallback, type IInstallDependenciesParams, type IMainCommandCreator, type IMainCommandExecutor, type IMainCommandMounter, type IMainCommandProcessor, type ISubCommand, type ISubCommandOptions, type ISubCommandProcessor, SubCommand, createMainCommandExecutor, createMainCommandMounter, createTopCommand, hasGitInstalled, installDependencies };
137
- //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@guanghechen/commander",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "A wrapper of commander.js with some utilities",
5
5
  "author": {
6
6
  "name": "guanghechen",
@@ -8,10 +8,10 @@
8
8
  },
9
9
  "repository": {
10
10
  "type": "git",
11
- "url": "https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/commander@1.0.1",
11
+ "url": "https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/commander@1.0.3",
12
12
  "directory": "packages/commander"
13
13
  },
14
- "homepage": "https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/commander@1.0.1/packages/commander#readme",
14
+ "homepage": "https://github.com/guanghechen/node-scaffolds/tree/@guanghechen/commander@1.0.3/packages/commander#readme",
15
15
  "keywords": [
16
16
  "commander"
17
17
  ],
@@ -41,11 +41,11 @@
41
41
  "README.md"
42
42
  ],
43
43
  "dependencies": {
44
- "@guanghechen/cli": "^1.0.2",
45
- "@guanghechen/exec": "^1.0.6",
44
+ "@guanghechen/cli": "^1.0.4",
45
+ "@guanghechen/exec": "^1.0.7",
46
46
  "@guanghechen/reporter.types": "^1.0.4",
47
- "@inquirer/select": "^3.0.1",
48
- "commander": "^12.1.0"
47
+ "@inquirer/select": "3.0.1",
48
+ "commander": "12.1.0"
49
49
  },
50
- "gitHead": "230582da1b1f3a517d8e880dcf086351b6e5f304"
50
+ "gitHead": "663ff760fc34bd3ba49c0cb6b02824ad5cdc8874"
51
51
  }