done-coding-extract 0.1.13-alpha.0 → 0.1.14
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 +1 -1
- package/es/{index-77430042.js → index-98e5aa49.js} +56 -56
- package/es/index.mjs +1 -1
- package/package.json +5 -5
package/es/cli.mjs
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as r, e as V, E as u, S as
|
|
3
|
-
import { log as s, _get as J, createSubcommand as N, getRootScriptName as v, getConfigFileCommonOptions as
|
|
2
|
+
import { a as r, e as V, E as u, S as h, G as S } from "./index-a1ee6691-8c73eb4d.js";
|
|
3
|
+
import { log as s, _get as J, createSubcommand as N, getRootScriptName as v, getConfigFileCommonOptions as j, initHandlerCommon as F, readConfigFile as x, _set as U, createMainCommand as W } from "@done-coding/cli-utils";
|
|
4
4
|
import $ from "node:path";
|
|
5
5
|
import y from "node:fs";
|
|
6
6
|
import { OutputModeEnum as H, batchCompileHandler as X } from "@done-coding/cli-template";
|
|
7
|
-
const
|
|
7
|
+
const D = {
|
|
8
8
|
name: "@done-coding/cli-extract",
|
|
9
|
-
version: "0.1.
|
|
9
|
+
version: "0.1.14",
|
|
10
10
|
description: "信息提取命令行工具",
|
|
11
11
|
bin: {
|
|
12
12
|
"dc-extract": "es/cli.mjs"
|
|
@@ -17,7 +17,7 @@ const j = {
|
|
|
17
17
|
}
|
|
18
18
|
}, {
|
|
19
19
|
cliConfig: { namespaceDir: K, moduleName: q }
|
|
20
|
-
} =
|
|
20
|
+
} = D, z = `./${K}/${q}`, A = `${z}.json5`, C = ({
|
|
21
21
|
sourceJson: e,
|
|
22
22
|
targetKey: n,
|
|
23
23
|
keyConfig: o
|
|
@@ -50,7 +50,7 @@ const j = {
|
|
|
50
50
|
}
|
|
51
51
|
}, R = {
|
|
52
52
|
name: "@done-coding/cli-inject",
|
|
53
|
-
version: "0.5.
|
|
53
|
+
version: "0.5.14",
|
|
54
54
|
description: "信息(JSON)注入命令行工具",
|
|
55
55
|
bin: {
|
|
56
56
|
"dc-inject": "es/cli.mjs"
|
|
@@ -61,7 +61,7 @@ const j = {
|
|
|
61
61
|
}
|
|
62
62
|
}, {
|
|
63
63
|
cliConfig: { namespaceDir: B, moduleName: Q }
|
|
64
|
-
} = R, Y = `./${B}/${Q}`, T = `${Y}.json`,
|
|
64
|
+
} = R, Y = `./${B}/${Q}`, T = `${Y}.json`, O = {
|
|
65
65
|
sourceFilePath: "./package.json",
|
|
66
66
|
keyConfigMap: {
|
|
67
67
|
name: {
|
|
@@ -78,22 +78,22 @@ const j = {
|
|
|
78
78
|
}
|
|
79
79
|
},
|
|
80
80
|
injectFilePath: "./src/injectInfo.json"
|
|
81
|
-
},
|
|
81
|
+
}, Z = () => j({
|
|
82
82
|
configPathDefault: T
|
|
83
|
-
}),
|
|
83
|
+
}), ee = async (e) => F(O, e, {
|
|
84
84
|
onFileGenerated: () => {
|
|
85
85
|
s.info("文件生成成功");
|
|
86
86
|
}
|
|
87
|
-
}),
|
|
87
|
+
}), ne = {
|
|
88
88
|
command: V.INIT,
|
|
89
89
|
describe: "初始化配置文件",
|
|
90
|
-
options:
|
|
91
|
-
handler:
|
|
92
|
-
},
|
|
93
|
-
...
|
|
90
|
+
options: Z(),
|
|
91
|
+
handler: ee
|
|
92
|
+
}, te = () => ({
|
|
93
|
+
...j({
|
|
94
94
|
configPathDefault: T
|
|
95
95
|
})
|
|
96
|
-
}),
|
|
96
|
+
}), oe = async ({
|
|
97
97
|
rootDir: e = process.cwd(),
|
|
98
98
|
config: n = O,
|
|
99
99
|
keyConfigMap: o = {}
|
|
@@ -125,28 +125,28 @@ const j = {
|
|
|
125
125
|
} else
|
|
126
126
|
s.stage("开始注入文件");
|
|
127
127
|
y.writeFileSync(p, g), s.success(`文件注入成功: ${p}`), s.info(g);
|
|
128
|
-
},
|
|
128
|
+
}, se = async (e) => {
|
|
129
129
|
const n = await x(e, () => (s.info("配置文件为空,使用默认配置"), O));
|
|
130
130
|
if (!n)
|
|
131
131
|
return s.error("配置文件为空"), process.exit(1);
|
|
132
132
|
const { rootDir: o } = e;
|
|
133
|
-
await
|
|
134
|
-
},
|
|
133
|
+
await oe({ rootDir: o, config: n });
|
|
134
|
+
}, re = {
|
|
135
135
|
command: "$0",
|
|
136
136
|
describe: "生成文件",
|
|
137
|
-
options:
|
|
138
|
-
handler:
|
|
139
|
-
}, { version:
|
|
140
|
-
[
|
|
137
|
+
options: te(),
|
|
138
|
+
handler: se
|
|
139
|
+
}, { version: ce, description: ie } = R;
|
|
140
|
+
[ne, re].map(
|
|
141
141
|
N
|
|
142
142
|
), v({ packageJson: R });
|
|
143
|
-
const
|
|
143
|
+
const ae = ({
|
|
144
144
|
input: e,
|
|
145
145
|
rootDir: n
|
|
146
146
|
}) => {
|
|
147
147
|
const o = $.resolve(n, e), t = y.readFileSync(o, "utf-8");
|
|
148
148
|
return e.endsWith(".json") || e.endsWith(".json5") ? JSON.parse(t) : t;
|
|
149
|
-
},
|
|
149
|
+
}, ue = (e) => typeof e == "object" && !!e, de = ({
|
|
150
150
|
content: e,
|
|
151
151
|
targetKey: n,
|
|
152
152
|
keyConfig: o
|
|
@@ -169,7 +169,7 @@ const ue = ({
|
|
|
169
169
|
});
|
|
170
170
|
}
|
|
171
171
|
case u.JSON_INJECT: {
|
|
172
|
-
if (!
|
|
172
|
+
if (!ue(e))
|
|
173
173
|
throw new Error(`${t} 类型的keyConfig需要content为json`);
|
|
174
174
|
return C({
|
|
175
175
|
sourceJson: e,
|
|
@@ -189,7 +189,7 @@ const ue = ({
|
|
|
189
189
|
default:
|
|
190
190
|
throw new Error(`不支持的类型${t}`);
|
|
191
191
|
}
|
|
192
|
-
},
|
|
192
|
+
}, pe = {
|
|
193
193
|
name: "${name}",
|
|
194
194
|
version: "${version}",
|
|
195
195
|
description: "${description}"
|
|
@@ -232,24 +232,24 @@ const ue = ({
|
|
|
232
232
|
list: [
|
|
233
233
|
{
|
|
234
234
|
mode: H.OVERWRITE,
|
|
235
|
-
inputData: JSON.stringify(
|
|
235
|
+
inputData: JSON.stringify(pe, null, 2),
|
|
236
236
|
output: "./src/extractInfo.json"
|
|
237
237
|
}
|
|
238
238
|
]
|
|
239
239
|
}
|
|
240
|
-
},
|
|
240
|
+
}, me = () => j({
|
|
241
241
|
configPathDefault: A
|
|
242
242
|
}), G = async (e) => F(k, e, {
|
|
243
243
|
onFileGenerated: () => {
|
|
244
244
|
s.info("文件生成成功");
|
|
245
245
|
}
|
|
246
|
-
}),
|
|
247
|
-
command:
|
|
246
|
+
}), le = {
|
|
247
|
+
command: h.INIT,
|
|
248
248
|
describe: "初始化配置文件",
|
|
249
|
-
options:
|
|
249
|
+
options: me(),
|
|
250
250
|
handler: G
|
|
251
|
-
},
|
|
252
|
-
...
|
|
251
|
+
}, fe = () => ({
|
|
252
|
+
...j({
|
|
253
253
|
configPathDefault: A
|
|
254
254
|
}),
|
|
255
255
|
mode: {
|
|
@@ -259,19 +259,19 @@ const ue = ({
|
|
|
259
259
|
default: S.RESULT,
|
|
260
260
|
describe: "生成模式"
|
|
261
261
|
}
|
|
262
|
-
}),
|
|
262
|
+
}), ge = async ({
|
|
263
263
|
rootDir: e = process.cwd(),
|
|
264
264
|
config: n
|
|
265
265
|
}) => {
|
|
266
266
|
const { extractInput: o, extractOutput: t } = n, a = Object.entries(o).reduce(
|
|
267
267
|
(c, [m, l]) => {
|
|
268
|
-
const f =
|
|
268
|
+
const f = ae({
|
|
269
269
|
rootDir: e,
|
|
270
270
|
input: m
|
|
271
271
|
});
|
|
272
272
|
return Object.entries(l).reduce(
|
|
273
273
|
(d, [i, p]) => {
|
|
274
|
-
const g =
|
|
274
|
+
const g = de({
|
|
275
275
|
content: f,
|
|
276
276
|
targetKey: i,
|
|
277
277
|
keyConfig: p
|
|
@@ -295,49 +295,49 @@ const ue = ({
|
|
|
295
295
|
if (!n)
|
|
296
296
|
return s.error("配置文件为空"), process.exit(1);
|
|
297
297
|
const { rootDir: o } = e;
|
|
298
|
-
await
|
|
299
|
-
},
|
|
298
|
+
await ge({ rootDir: o, config: n });
|
|
299
|
+
}, ye = {
|
|
300
300
|
command: "$0",
|
|
301
301
|
describe: "生成文件",
|
|
302
|
-
options:
|
|
302
|
+
options: fe(),
|
|
303
303
|
handler: I
|
|
304
|
-
},
|
|
304
|
+
}, Ne = async (e, n) => {
|
|
305
305
|
switch (e) {
|
|
306
|
-
case
|
|
306
|
+
case h.INIT:
|
|
307
307
|
return G(n);
|
|
308
|
-
case
|
|
308
|
+
case h.GENERATE:
|
|
309
309
|
return I(n);
|
|
310
310
|
default:
|
|
311
311
|
return I(n);
|
|
312
312
|
}
|
|
313
|
-
}, { version:
|
|
314
|
-
describe:
|
|
315
|
-
version:
|
|
316
|
-
subcommands: [
|
|
313
|
+
}, { version: Ee, description: Ce } = D, _ = {
|
|
314
|
+
describe: Ce,
|
|
315
|
+
version: Ee,
|
|
316
|
+
subcommands: [le, ye].map(
|
|
317
317
|
N
|
|
318
318
|
),
|
|
319
319
|
demandCommandCount: 1,
|
|
320
|
-
rootScriptName: v({ packageJson:
|
|
320
|
+
rootScriptName: v({ packageJson: D })
|
|
321
321
|
}, {
|
|
322
322
|
cliConfig: { moduleName: w }
|
|
323
|
-
} =
|
|
323
|
+
} = D, P = (e = !1) => {
|
|
324
324
|
const n = e ? w : void 0, o = `$0${e ? ` ${w}` : ""} <command> [options]`;
|
|
325
325
|
return { command: n, usage: o };
|
|
326
|
-
},
|
|
326
|
+
}, Re = async () => W({
|
|
327
327
|
..._,
|
|
328
328
|
...P()
|
|
329
|
-
}),
|
|
329
|
+
}), Oe = () => N({
|
|
330
330
|
..._,
|
|
331
331
|
...P(!0)
|
|
332
332
|
});
|
|
333
333
|
export {
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
334
|
+
Oe as a,
|
|
335
|
+
le as b,
|
|
336
|
+
Re as c,
|
|
337
337
|
I as d,
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
338
|
+
ye as e,
|
|
339
|
+
Ne as f,
|
|
340
|
+
ge as g,
|
|
341
341
|
G as h,
|
|
342
342
|
_ as i
|
|
343
343
|
};
|
package/es/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { i as t, a as i, e as s, g as d, d as l, f as p, b as f, h as u } from "./index-
|
|
2
|
+
import { i as t, a as i, e as s, g as d, d as l, f as p, b as f, h as u } from "./index-98e5aa49.js";
|
|
3
3
|
import { E as C, G as E, S as b } from "./index-a1ee6691-8c73eb4d.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-extract",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "信息提取命令行工具",
|
|
5
5
|
"private": false,
|
|
6
6
|
"module": "es/index.mjs",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"license": "MIT",
|
|
43
43
|
"sideEffects": false,
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@done-coding/cli-inject": "^0.5.
|
|
45
|
+
"@done-coding/cli-inject": "^0.5.14",
|
|
46
46
|
"@types/node": "^18.0.0",
|
|
47
47
|
"@types/yargs": "^17.0.28",
|
|
48
48
|
"rimraf": "^6.0.1",
|
|
@@ -54,9 +54,9 @@
|
|
|
54
54
|
"node": ">=18.0.0"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@done-coding/cli-template": "0.8.
|
|
58
|
-
"@done-coding/cli-utils": "^0.7.
|
|
57
|
+
"@done-coding/cli-template": "0.8.1",
|
|
58
|
+
"@done-coding/cli-utils": "^0.7.5"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "fb405d55a9fe10014863d725b1f4e3bcd45412af",
|
|
61
61
|
"scripts": {}
|
|
62
62
|
}
|