@coherent.js/cli 1.0.0-beta.2
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/LICENSE +21 -0
- package/README.md +509 -0
- package/bin/coherent.js +36 -0
- package/dist/index.cjs +11967 -0
- package/dist/index.d.ts +22 -0
- package/dist/index.js +12154 -0
- package/package.json +59 -0
- package/types/index.d.ts +488 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @coherent.js/cli TypeScript definitions
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
export interface CreateOptions {
|
|
6
|
+
template?: string;
|
|
7
|
+
skipInstall?: boolean;
|
|
8
|
+
skipGit?: boolean;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface GenerateOptions {
|
|
12
|
+
path?: string;
|
|
13
|
+
template?: string;
|
|
14
|
+
skipTest?: boolean;
|
|
15
|
+
skipStory?: boolean;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export declare function createCLI(): Promise<void>;
|
|
19
|
+
export declare const createCommand: any;
|
|
20
|
+
export declare const generateCommand: any;
|
|
21
|
+
export declare const buildCommand: any;
|
|
22
|
+
export declare const devCommand: any;
|