done-coding-inject 0.5.22 → 0.5.23
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/README.md +8 -1
- package/es/cli.mjs +1 -1
- package/es/{index-06a16723.js → index-6e0f42c3.js} +35 -35
- package/es/index.mjs +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
## 安装
|
|
9
9
|
|
|
10
10
|
### 独立安装
|
|
11
|
+
|
|
11
12
|
```bash
|
|
12
13
|
npm install @done-coding/cli-inject
|
|
13
14
|
# 或
|
|
@@ -15,6 +16,7 @@ pnpm add @done-coding/cli-inject
|
|
|
15
16
|
```
|
|
16
17
|
|
|
17
18
|
### 作为 done-coding CLI 的一部分
|
|
19
|
+
|
|
18
20
|
```bash
|
|
19
21
|
npm install -g @done-coding/cli
|
|
20
22
|
# 然后使用
|
|
@@ -46,6 +48,7 @@ dc-inject --help
|
|
|
46
48
|
### 基础命令
|
|
47
49
|
|
|
48
50
|
#### `dc-inject init`
|
|
51
|
+
|
|
49
52
|
初始化配置文件
|
|
50
53
|
|
|
51
54
|
```bash
|
|
@@ -54,6 +57,7 @@ dc-inject init
|
|
|
54
57
|
```
|
|
55
58
|
|
|
56
59
|
#### `dc-inject` (默认命令)
|
|
60
|
+
|
|
57
61
|
生成文件
|
|
58
62
|
|
|
59
63
|
```bash
|
|
@@ -68,6 +72,7 @@ dc-inject -C ./custom-config.json
|
|
|
68
72
|
```
|
|
69
73
|
|
|
70
74
|
**选项说明**:
|
|
75
|
+
|
|
71
76
|
- `-R, --rootDir`: 运行目录
|
|
72
77
|
- `-C, --configPath`: 配置文件相对路径,默认为 `./.done-coding/inject.json`
|
|
73
78
|
|
|
@@ -113,6 +118,7 @@ DC inject -R ./src
|
|
|
113
118
|
### 常见问题
|
|
114
119
|
|
|
115
120
|
**Q: 配置文件找不到**
|
|
121
|
+
|
|
116
122
|
```bash
|
|
117
123
|
# 检查配置文件是否存在
|
|
118
124
|
ls -la .done-coding/inject.json
|
|
@@ -122,6 +128,7 @@ dc-inject init
|
|
|
122
128
|
```
|
|
123
129
|
|
|
124
130
|
**Q: 注入失败**
|
|
131
|
+
|
|
125
132
|
```bash
|
|
126
133
|
# 检查运行目录
|
|
127
134
|
dc-inject -R ./src
|
|
@@ -154,7 +161,7 @@ dc-inject --help
|
|
|
154
161
|
|
|
155
162
|
```bash
|
|
156
163
|
# 克隆仓库
|
|
157
|
-
git clone https://
|
|
164
|
+
git clone https://github.com/done-coding/done-coding-cli.git
|
|
158
165
|
cd done-coding-cli/packages/inject
|
|
159
166
|
|
|
160
167
|
# 安装依赖
|
package/es/cli.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { I as c, S as E } from "./index-a1ee6691.js";
|
|
3
3
|
import { outputConsole as o, _get as I, initHandlerCommon as k, getConfigFileCommonOptions as A, _set as w, readConfigFile as T, createSubcommand as N, getRootScriptName as _, createMainCommand as M } from "@done-coding/cli-utils";
|
|
4
|
-
import
|
|
5
|
-
import
|
|
4
|
+
import D from "node:path";
|
|
5
|
+
import m from "node:fs";
|
|
6
6
|
const x = ({
|
|
7
7
|
sourceJson: e,
|
|
8
8
|
targetKey: n,
|
|
@@ -36,7 +36,7 @@ const x = ({
|
|
|
36
36
|
}
|
|
37
37
|
}, d = {
|
|
38
38
|
name: "@done-coding/cli-inject",
|
|
39
|
-
version: "0.5.
|
|
39
|
+
version: "0.5.23",
|
|
40
40
|
description: "信息(JSON)注入命令行工具",
|
|
41
41
|
bin: {
|
|
42
42
|
"dc-inject": "es/cli.mjs"
|
|
@@ -47,7 +47,7 @@ const x = ({
|
|
|
47
47
|
}
|
|
48
48
|
}, {
|
|
49
49
|
cliConfig: { namespaceDir: G, moduleName: J }
|
|
50
|
-
} = d, L = `./${G}/${J}`, R = `${L}.json`,
|
|
50
|
+
} = d, L = `./${G}/${J}`, R = `${L}.json`, U = {
|
|
51
51
|
sourceFilePath: "./package.json",
|
|
52
52
|
keyConfigMap: {
|
|
53
53
|
name: {
|
|
@@ -64,22 +64,22 @@ const x = ({
|
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
66
|
injectFilePath: "./src/injectInfo.json"
|
|
67
|
-
}, U = () => A({
|
|
67
|
+
}, h = U, V = () => A({
|
|
68
68
|
configPathDefault: R
|
|
69
69
|
}), S = async (e) => k(h, e, {
|
|
70
70
|
onFileGenerated: () => {
|
|
71
71
|
o.info("文件生成成功");
|
|
72
72
|
}
|
|
73
|
-
}),
|
|
73
|
+
}), H = {
|
|
74
74
|
command: E.INIT,
|
|
75
75
|
describe: "初始化配置文件",
|
|
76
|
-
options:
|
|
76
|
+
options: V(),
|
|
77
77
|
handler: S
|
|
78
|
-
},
|
|
78
|
+
}, K = () => ({
|
|
79
79
|
...A({
|
|
80
80
|
configPathDefault: R
|
|
81
81
|
})
|
|
82
|
-
}),
|
|
82
|
+
}), W = async ({
|
|
83
83
|
rootDir: e = process.cwd(),
|
|
84
84
|
config: n = h,
|
|
85
85
|
keyConfigMap: t = {}
|
|
@@ -96,33 +96,33 @@ const x = ({
|
|
|
96
96
|
return o.error("源文件必须是json"), process.exit(1);
|
|
97
97
|
if (!r.endsWith(".json"))
|
|
98
98
|
return o.error("注入文件必须是json"), process.exit(1);
|
|
99
|
-
const p =
|
|
100
|
-
(
|
|
99
|
+
const p = D.resolve(e, s), g = m.readFileSync(p, "utf-8"), y = JSON.parse(g), i = Object.entries(f).reduce(
|
|
100
|
+
(u, [F, v]) => {
|
|
101
101
|
const P = x({ sourceJson: y, targetKey: F, keyConfig: v });
|
|
102
|
-
return w(
|
|
102
|
+
return w(u, F, P), u;
|
|
103
103
|
},
|
|
104
104
|
{}
|
|
105
|
-
), l =
|
|
106
|
-
if (
|
|
107
|
-
const
|
|
108
|
-
if (C ===
|
|
105
|
+
), l = D.resolve(e, r), C = JSON.stringify(i, null, 2);
|
|
106
|
+
if (m.existsSync(l)) {
|
|
107
|
+
const u = m.readFileSync(l, "utf-8");
|
|
108
|
+
if (C === u)
|
|
109
109
|
return o.skip("注入文件已存在且内容相同,无需重复注入"), i;
|
|
110
110
|
o.stage("文件内容变化,开始覆盖注入文件");
|
|
111
111
|
} else
|
|
112
112
|
o.stage("开始注入文件");
|
|
113
|
-
|
|
113
|
+
m.writeFileSync(l, C), o.success(`文件注入成功: ${l}`), o.info(C);
|
|
114
114
|
}, j = async (e) => {
|
|
115
115
|
const n = await T(e, () => (o.info("配置文件为空,使用默认配置"), h));
|
|
116
116
|
if (!n)
|
|
117
117
|
return o.error("配置文件为空"), process.exit(1);
|
|
118
118
|
const { rootDir: t } = e;
|
|
119
|
-
await
|
|
120
|
-
},
|
|
119
|
+
await W({ rootDir: t, config: n });
|
|
120
|
+
}, X = {
|
|
121
121
|
command: "$0",
|
|
122
122
|
describe: "生成文件",
|
|
123
|
-
options:
|
|
123
|
+
options: K(),
|
|
124
124
|
handler: j
|
|
125
|
-
},
|
|
125
|
+
}, ee = async (e, n) => {
|
|
126
126
|
switch (e) {
|
|
127
127
|
case E.INIT:
|
|
128
128
|
return S(n);
|
|
@@ -131,34 +131,34 @@ const x = ({
|
|
|
131
131
|
default:
|
|
132
132
|
return j(n);
|
|
133
133
|
}
|
|
134
|
-
}, { version:
|
|
135
|
-
describe:
|
|
136
|
-
version:
|
|
137
|
-
subcommands: [
|
|
134
|
+
}, { version: q, description: z } = d, b = {
|
|
135
|
+
describe: z,
|
|
136
|
+
version: q,
|
|
137
|
+
subcommands: [H, X].map(
|
|
138
138
|
N
|
|
139
139
|
),
|
|
140
140
|
demandCommandCount: 1,
|
|
141
141
|
rootScriptName: _({ packageJson: d })
|
|
142
142
|
}, {
|
|
143
|
-
cliConfig: { moduleName:
|
|
143
|
+
cliConfig: { moduleName: $ }
|
|
144
144
|
} = d, O = (e = !1) => {
|
|
145
|
-
const n = e ?
|
|
145
|
+
const n = e ? $ : void 0, t = `$0${e ? ` ${$}` : ""} <command> [options]`;
|
|
146
146
|
return { command: n, usage: t };
|
|
147
|
-
},
|
|
147
|
+
}, ne = async () => M({
|
|
148
148
|
...b,
|
|
149
149
|
...O()
|
|
150
|
-
}),
|
|
150
|
+
}), oe = () => N({
|
|
151
151
|
...b,
|
|
152
152
|
...O(!0)
|
|
153
153
|
});
|
|
154
154
|
export {
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
155
|
+
oe as a,
|
|
156
|
+
H as b,
|
|
157
|
+
ne as c,
|
|
158
158
|
j as d,
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
159
|
+
X as e,
|
|
160
|
+
ee as f,
|
|
161
|
+
W as g,
|
|
162
162
|
S as h,
|
|
163
163
|
b as i,
|
|
164
164
|
x as k
|
package/es/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { i as r, a as i, e as s, g as t, d, f as l, b as f, h as p, k as C } from "./index-
|
|
2
|
+
import { i as r, a as i, e as s, g as t, d, f as l, b as f, h as p, k as C } from "./index-6e0f42c3.js";
|
|
3
3
|
import { I as g, S as u } from "./index-a1ee6691.js";
|
|
4
4
|
import "@done-coding/cli-utils";
|
|
5
5
|
import "node:path";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "done-coding-inject",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.23",
|
|
4
4
|
"description": "信息(JSON)注入命令行工具",
|
|
5
5
|
"private": false,
|
|
6
6
|
"module": "es/index.mjs",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
],
|
|
32
32
|
"repository": {
|
|
33
33
|
"type": "git",
|
|
34
|
-
"url": "https://
|
|
34
|
+
"url": "https://github.com/done-coding/done-coding-cli.git",
|
|
35
35
|
"directory": "packages/inject"
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
@@ -49,11 +49,11 @@
|
|
|
49
49
|
"vite-plugin-dts": "^3.6.0"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@done-coding/cli-utils": "0.8.
|
|
52
|
+
"@done-coding/cli-utils": "0.8.4"
|
|
53
53
|
},
|
|
54
54
|
"engines": {
|
|
55
55
|
"node": ">=18.0.0"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "d90f437c0a716f3e62bd92a221341838710869ad",
|
|
58
58
|
"scripts": {}
|
|
59
59
|
}
|