@onexapis/cli 1.0.3 → 1.1.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/README.md +65 -63
- package/dist/cli.js +1117 -114
- package/dist/cli.js.map +1 -1
- package/dist/cli.mjs +1092 -112
- package/dist/cli.mjs.map +1 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +978 -242
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +812 -95
- package/dist/index.mjs.map +1 -1
- package/dist/preview/preview-app.tsx +368 -0
- package/package.json +7 -2
package/dist/index.d.mts
CHANGED
|
@@ -76,12 +76,13 @@ interface CloneOptions {
|
|
|
76
76
|
bucket?: string;
|
|
77
77
|
environment?: "staging" | "production";
|
|
78
78
|
install?: boolean;
|
|
79
|
+
name?: string;
|
|
79
80
|
}
|
|
80
81
|
/**
|
|
81
82
|
* Clone theme source code from S3
|
|
82
83
|
*
|
|
83
84
|
* Downloads source.zip and extracts it to a local directory.
|
|
84
|
-
*
|
|
85
|
+
* Asks the user for a new theme name to differentiate from the original.
|
|
85
86
|
*/
|
|
86
87
|
declare function cloneCommand(themeName: string, options: CloneOptions): Promise<void>;
|
|
87
88
|
|
package/dist/index.d.ts
CHANGED
|
@@ -76,12 +76,13 @@ interface CloneOptions {
|
|
|
76
76
|
bucket?: string;
|
|
77
77
|
environment?: "staging" | "production";
|
|
78
78
|
install?: boolean;
|
|
79
|
+
name?: string;
|
|
79
80
|
}
|
|
80
81
|
/**
|
|
81
82
|
* Clone theme source code from S3
|
|
82
83
|
*
|
|
83
84
|
* Downloads source.zip and extracts it to a local directory.
|
|
84
|
-
*
|
|
85
|
+
* Asks the user for a new theme name to differentiate from the original.
|
|
85
86
|
*/
|
|
86
87
|
declare function cloneCommand(themeName: string, options: CloneOptions): Promise<void>;
|
|
87
88
|
|