@mapples/cli 0.0.1 → 0.0.3
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 +0 -3
- package/dist/commands/package.d.ts +0 -7
- package/dist/commands/pages.d.ts +0 -6
- package/dist/commands/style.d.ts +2 -0
- package/dist/index.js +5406 -1198
- package/dist/index.js.map +1 -1
- package/dist/utils/config.d.ts +5 -23
- 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