@mapples/cli 0.0.2 → 0.0.4
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/dist/commands/assets.d.ts +2 -0
- package/dist/commands/global.d.ts +2 -0
- package/dist/commands/init.d.ts +1 -4
- package/dist/commands/package.d.ts +0 -7
- package/dist/commands/pages.d.ts +2 -8
- package/dist/commands/style.d.ts +2 -8
- package/dist/index.js +5318 -1321
- package/dist/index.js.map +1 -1
- package/dist/utils/config.d.ts +8 -25
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/template.d.ts +0 -5
- package/dist/utils/time.d.ts +3 -0
- package/package.json +3 -1
package/dist/commands/init.d.ts
CHANGED
|
@@ -1,9 +1,2 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Synchronizes packages based on package-list.json
|
|
3
|
-
* @param autoApprove Whether to skip user confirmation
|
|
4
|
-
*/
|
|
5
1
|
export declare const syncPackages: (autoApprove?: boolean) => Promise<void>;
|
|
6
|
-
/**
|
|
7
|
-
* Shows information about packages in package-list.json
|
|
8
|
-
*/
|
|
9
2
|
export declare const showPackageInfo: () => void;
|
package/dist/commands/pages.d.ts
CHANGED
|
@@ -1,8 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
*/
|
|
4
|
-
export declare const syncPages: () => Promise<void>;
|
|
5
|
-
/**
|
|
6
|
-
* Shows information about pages in a table format
|
|
7
|
-
*/
|
|
8
|
-
export declare const showPagesInfo: () => Promise<void>;
|
|
1
|
+
export declare const syncPages: (configPath?: string) => Promise<void>;
|
|
2
|
+
export declare const showPagesInfo: (configPath?: string) => Promise<void>;
|
package/dist/commands/style.d.ts
CHANGED
|
@@ -1,8 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
*/
|
|
4
|
-
export declare const syncStyle: () => Promise<void>;
|
|
5
|
-
/**
|
|
6
|
-
* Shows information about style in a table format
|
|
7
|
-
*/
|
|
8
|
-
export declare const showStyleInfo: () => Promise<void>;
|
|
1
|
+
export declare const syncStyle: (configPath?: string) => Promise<void>;
|
|
2
|
+
export declare const showStyleInfo: (configPath?: string) => Promise<void>;
|