rapidkit 0.23.1 → 0.25.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/LICENSE +1 -1
- package/README.md +123 -721
- package/dist/chunk-D46IWAXH.js +33 -0
- package/dist/chunk-FXRDNZGB.js +1 -0
- package/dist/{chunk-7LU4Z66R.js → chunk-N64Z3XVF.js} +2 -2
- package/dist/chunk-T62GANVU.js +786 -0
- package/dist/create-EFY5NQWP.js +1 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +317 -974
- package/dist/package.json +16 -4
- package/dist/{pythonRapidkitExec-YIFUZLND.js → pythonRapidkitExec-7LPE3JUQ.js} +1 -1
- package/dist/{workspace-LZZGJRGV.js → workspace-J5UUDMHW.js} +52 -49
- package/package.json +13 -3
- package/dist/chunk-74G6C57B.js +0 -24
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export{h as createProject,i as registerWorkspaceAtPath,f as syncWorkspaceFoundationFiles,g as writeWorkspaceLauncher}from'./chunk-T62GANVU.js';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
declare function handleCreateOrFallback(args: string[]): Promise<number>;
|
|
3
|
+
declare const NPM_ONLY_TOP_LEVEL_COMMANDS: readonly ["doctor", "workspace", "bootstrap", "setup", "cache", "mirror", "ai", "config", "shell"];
|
|
3
4
|
declare function handleBootstrapCommand(args: string[], initRunner?: (nextArgs: string[]) => Promise<number>): Promise<number>;
|
|
4
5
|
declare function handleSetupCommand(args: string[]): Promise<number>;
|
|
5
6
|
declare function handleCacheCommand(args: string[]): Promise<number>;
|
|
7
|
+
declare function handleMirrorCommand(args: string[]): Promise<number>;
|
|
6
8
|
declare function handleInitCommand(args: string[]): Promise<number>;
|
|
7
9
|
declare function shouldForwardToCore(args: string[]): Promise<boolean>;
|
|
8
10
|
|
|
9
|
-
export { handleBootstrapCommand, handleCacheCommand, handleCreateOrFallback, handleInitCommand, handleSetupCommand, shouldForwardToCore };
|
|
11
|
+
export { NPM_ONLY_TOP_LEVEL_COMMANDS, handleBootstrapCommand, handleCacheCommand, handleCreateOrFallback, handleInitCommand, handleMirrorCommand, handleSetupCommand, shouldForwardToCore };
|