create-done-coding 0.14.0 → 0.15.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 +1 -1
- package/es/{index-8c566507.js → index-1ef18b8f.js} +2 -2
- package/es/index.mjs +1 -1
- package/package.json +9 -7
- package/types/index.d.ts +1 -1
package/es/cli.mjs
CHANGED
|
@@ -8,7 +8,7 @@ import { getConfigPath as Gt, normalizeCollectEnvDataForm as Cs, MODULE_DEFAULT_
|
|
|
8
8
|
import { getTargetRepoUrl as As } from "@done-coding/cli-git";
|
|
9
9
|
const ne = {
|
|
10
10
|
name: "create-done-coding",
|
|
11
|
-
version: "0.
|
|
11
|
+
version: "0.15.0",
|
|
12
12
|
description: "项目创建命令行工具",
|
|
13
13
|
bin: {
|
|
14
14
|
"create-done-coding": "es/cli.mjs"
|
|
@@ -3815,7 +3815,7 @@ const Wp = 3e4, rn = Math.random(), Qo = {
|
|
|
3815
3815
|
}
|
|
3816
3816
|
}), hr = {
|
|
3817
3817
|
name: "@done-coding/cli-git",
|
|
3818
|
-
version: "0.7.
|
|
3818
|
+
version: "0.7.5",
|
|
3819
3819
|
description: "git跨平台操作命令行工具",
|
|
3820
3820
|
bin: {
|
|
3821
3821
|
"dc-git": "es/cli.mjs"
|
package/es/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { C as p, F as c, G as l, L as C, S as d, k as u, f as T, a as f, e as E, h as L, g as P, j as I, i as A, p as F, b as R, d as b, r as g } from "./index-
|
|
2
|
+
import { C as p, F as c, G as l, L as C, S as d, k as u, f as T, a as f, e as E, h as L, g as P, j as I, i as A, p as F, b as R, d as b, r as g } from "./index-1ef18b8f.js";
|
|
3
3
|
import "@done-coding/cli-utils";
|
|
4
4
|
import "node:os";
|
|
5
5
|
import "node:path";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-done-coding",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0",
|
|
4
4
|
"description": "项目创建命令行工具",
|
|
5
5
|
"module": "es/index.mjs",
|
|
6
6
|
"type": "module",
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
"build": "vite build",
|
|
25
25
|
"test": "vitest run",
|
|
26
26
|
"test:watch": "vitest",
|
|
27
|
-
"prepack": "pnpm build"
|
|
27
|
+
"prepack": "pnpm build",
|
|
28
|
+
"prebuild": "rimraf types"
|
|
28
29
|
},
|
|
29
30
|
"repository": {
|
|
30
31
|
"type": "git",
|
|
@@ -39,21 +40,22 @@
|
|
|
39
40
|
"license": "MIT",
|
|
40
41
|
"sideEffects": false,
|
|
41
42
|
"devDependencies": {
|
|
42
|
-
"@done-coding/cli-inject": "0.6.
|
|
43
|
+
"@done-coding/cli-inject": "0.6.5",
|
|
43
44
|
"@types/node": "^18.0.0",
|
|
44
45
|
"@types/yargs": "^17.0.28",
|
|
46
|
+
"rimraf": "^5.0.1",
|
|
45
47
|
"typescript": "^5.8.3",
|
|
46
48
|
"vite": "^4.4.11",
|
|
47
49
|
"vite-plugin-dts": "^3.6.0",
|
|
48
50
|
"vitest": "^1.6.1"
|
|
49
51
|
},
|
|
50
52
|
"dependencies": {
|
|
51
|
-
"@done-coding/cli-git": "0.7.
|
|
52
|
-
"@done-coding/cli-template": "0.
|
|
53
|
-
"@done-coding/cli-utils": "0.
|
|
53
|
+
"@done-coding/cli-git": "0.7.5",
|
|
54
|
+
"@done-coding/cli-template": "0.12.0",
|
|
55
|
+
"@done-coding/cli-utils": "0.12.0"
|
|
54
56
|
},
|
|
55
57
|
"engines": {
|
|
56
58
|
"node": ">=18.0.0"
|
|
57
59
|
},
|
|
58
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "04c449c00b347bb042f97daa2e7fba0a751121b8"
|
|
59
61
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -230,7 +230,7 @@ export declare const handler: (command: SubcommandEnum, argv: CliHandlerArgv<any
|
|
|
230
230
|
|
|
231
231
|
export declare const injectInfo: {
|
|
232
232
|
"name": "create-done-coding",
|
|
233
|
-
"version": "0.
|
|
233
|
+
"version": "0.15.0",
|
|
234
234
|
"description": "项目创建命令行工具",
|
|
235
235
|
"bin": {
|
|
236
236
|
"create-done-coding": "es/cli.mjs"
|