@done-coding/cli 0.15.1 → 0.15.3-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
@@ -10,7 +10,7 @@ import { crateAsSubcommand as t } from "@done-coding/cli-config";
10
10
  import { createMainCommand as e } from "@done-coding/cli-utils";
11
11
  const d = {
12
12
  name: "@done-coding/cli",
13
- version: "0.15.1",
13
+ version: "0.15.3-alpha.0",
14
14
  description: "done-coding命令行工具"
15
15
  }, { version: i, description: u } = d, b = {
16
16
  usage: "$0 <command> [options]",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@done-coding/cli",
3
- "version": "0.15.1",
3
+ "version": "0.15.3-alpha.0",
4
4
  "description": "done-coding命令行工具",
5
5
  "private": false,
6
6
  "module": "es/cli.mjs",
@@ -53,15 +53,15 @@
53
53
  "node": ">=18.0.0"
54
54
  },
55
55
  "dependencies": {
56
- "@done-coding/cli-component": "^0.3.8",
57
- "@done-coding/cli-config": "^0.1.0",
58
- "@done-coding/cli-extract": "^0.1.8",
59
- "@done-coding/cli-git": "^0.6.0",
60
- "@done-coding/cli-inject": "^0.5.8",
61
- "@done-coding/cli-publish": "^0.7.0",
62
- "@done-coding/cli-template": "^0.7.8",
63
- "@done-coding/cli-utils": "^0.7.0",
64
- "create-done-coding": "^0.11.7"
56
+ "@done-coding/cli-component": "^0.3.10-alpha.0",
57
+ "@done-coding/cli-config": "^0.1.2-alpha.0",
58
+ "@done-coding/cli-extract": "^0.1.10-alpha.0",
59
+ "@done-coding/cli-git": "^0.6.2-alpha.0",
60
+ "@done-coding/cli-inject": "^0.5.10-alpha.0",
61
+ "@done-coding/cli-publish": "^0.7.2-alpha.0",
62
+ "@done-coding/cli-template": "^0.7.10-alpha.0",
63
+ "@done-coding/cli-utils": "^0.7.1-alpha.0",
64
+ "create-done-coding": "^0.11.9-alpha.0"
65
65
  },
66
- "gitHead": "841548927f46613cd32e9bfcfdfd9aedfb8d4c05"
66
+ "gitHead": "3376f5fbbf8b87c791316e76df06028afd650e08"
67
67
  }
package/types/cli.d.ts CHANGED
@@ -1,2 +1 @@
1
- #!/usr/bin/env node
2
- export {};
1
+ export { }
package/types/index.d.ts CHANGED
@@ -1,7 +1,44 @@
1
- export { crateAsSubcommand as createExtractCommand, handler as extractHandler, } from "@done-coding/cli-extract";
2
- export { crateAsSubcommand as createInjectCommand, handler as injectHandler, } from "@done-coding/cli-inject";
3
- export { crateAsSubcommand as createCreateCommand, handler as createHandler, } from "create-done-coding";
4
- export { crateAsSubcommand as createPublishCommand, handler as publishHandler, } from "@done-coding/cli-publish";
5
- export { crateAsSubcommand as createTemplateCommand, handler as templateHandler, } from "@done-coding/cli-template";
6
- export { crateAsSubcommand as createComponentCommand, handler as componentHandler, } from "@done-coding/cli-component";
7
- export { crateAsSubcommand as configComponentCommand, handler as configHandler, } from "@done-coding/cli-config";
1
+ import { handler as componentHandler } from '@done-coding/cli-component';
2
+ import { crateAsSubcommand as configComponentCommand } from '@done-coding/cli-config';
3
+ import { handler as configHandler } from '@done-coding/cli-config';
4
+ import { crateAsSubcommand as createComponentCommand } from '@done-coding/cli-component';
5
+ import { crateAsSubcommand as createCreateCommand } from 'create-done-coding';
6
+ import { crateAsSubcommand as createExtractCommand } from '@done-coding/cli-extract';
7
+ import { handler as createHandler } from 'create-done-coding';
8
+ import { crateAsSubcommand as createInjectCommand } from '@done-coding/cli-inject';
9
+ import { crateAsSubcommand as createPublishCommand } from '@done-coding/cli-publish';
10
+ import { crateAsSubcommand as createTemplateCommand } from '@done-coding/cli-template';
11
+ import { handler as extractHandler } from '@done-coding/cli-extract';
12
+ import { handler as injectHandler } from '@done-coding/cli-inject';
13
+ import { handler as publishHandler } from '@done-coding/cli-publish';
14
+ import { handler as templateHandler } from '@done-coding/cli-template';
15
+
16
+ export { componentHandler }
17
+
18
+ export { configComponentCommand }
19
+
20
+ export { configHandler }
21
+
22
+ export { createComponentCommand }
23
+
24
+ export { createCreateCommand }
25
+
26
+ export { createExtractCommand }
27
+
28
+ export { createHandler }
29
+
30
+ export { createInjectCommand }
31
+
32
+ export { createPublishCommand }
33
+
34
+ export { createTemplateCommand }
35
+
36
+ export { extractHandler }
37
+
38
+ export { injectHandler }
39
+
40
+ export { publishHandler }
41
+
42
+ export { templateHandler }
43
+
44
+ export { }
@@ -1 +1 @@
1
- declare const isWindows: boolean;
1
+ export { }
@@ -1,7 +0,0 @@
1
- declare const _default: {
2
- "name": "@done-coding/cli",
3
- "version": "0.15.1",
4
- "description": "done-coding命令行工具"
5
- };
6
-
7
- export default _default;
package/types/main.d.ts DELETED
@@ -1,6 +0,0 @@
1
- /** 作为主命令创建 */
2
- export declare const createCommand: () => Promise<void | {
3
- [x: string]: unknown;
4
- _: (string | number)[];
5
- $0: string;
6
- }>;