@done-coding/cli-config 0.1.0-alpha.1 → 0.1.1-alpha.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/es/cli.mjs
CHANGED
|
@@ -6,7 +6,7 @@ import { execSync as k } from "node:child_process";
|
|
|
6
6
|
var y = /* @__PURE__ */ ((e) => (e.CHECK = "check", e.ADD = "add", e))(y || {}), m = /* @__PURE__ */ ((e) => (e.ESLINT = "eslint", e.PRETTIER = "prettier", e.COMMITLINT = "commitlint", e.LSLINT = "ls-lint", e.MERGELINT = "merge-lint", e))(m || {});
|
|
7
7
|
const N = {
|
|
8
8
|
name: "@done-coding/cli-config",
|
|
9
|
-
version: "0.1.
|
|
9
|
+
version: "0.1.1-alpha.0",
|
|
10
10
|
description: "工程化配置命令行工具",
|
|
11
11
|
cliConfig: {
|
|
12
12
|
namespaceDir: ".done-coding",
|
|
@@ -398,6 +398,8 @@ ${JSON.stringify($, null, 2)}`), await ee({
|
|
|
398
398
|
...x(!0)
|
|
399
399
|
});
|
|
400
400
|
export {
|
|
401
|
+
m as C,
|
|
402
|
+
y as S,
|
|
401
403
|
Te as a,
|
|
402
404
|
Pe as c,
|
|
403
405
|
Ee as h
|
package/es/index.mjs
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import {
|
|
2
|
+
import { C as i, S as s, a as t, h as u } from "./index-5d315732.js";
|
|
3
3
|
import "@done-coding/cli-utils";
|
|
4
4
|
import "node:fs";
|
|
5
5
|
import "node:path";
|
|
6
6
|
import "node:child_process";
|
|
7
7
|
export {
|
|
8
|
-
i as
|
|
9
|
-
|
|
8
|
+
i as ConfigModuleEnum,
|
|
9
|
+
s as SubcommandEnum,
|
|
10
|
+
t as crateAsSubcommand,
|
|
11
|
+
u as handler
|
|
10
12
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@done-coding/cli-config",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1-alpha.0",
|
|
4
4
|
"description": "工程化配置命令行工具",
|
|
5
5
|
"private": false,
|
|
6
6
|
"module": "es/index.mjs",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"license": "MIT",
|
|
41
41
|
"sideEffects": false,
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@done-coding/cli-inject": "^0.5.
|
|
43
|
+
"@done-coding/cli-inject": "^0.5.9-alpha.0",
|
|
44
44
|
"@types/node": "^18.0.0",
|
|
45
45
|
"@types/yargs": "^17.0.28",
|
|
46
46
|
"rimraf": "^6.0.1",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"node": ">=18.0.0"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@done-coding/cli-utils": "^0.7.0
|
|
55
|
+
"@done-coding/cli-utils": "^0.7.0"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "62a4c9df2bf8690e52753e0734ebb09010bb2e88"
|
|
58
58
|
}
|
package/types/index.d.ts
CHANGED