@blocklet/pages-kit-block-studio 0.6.13 → 0.6.15

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.
@@ -1,3 +1,5 @@
1
- export declare function buildLib(options: {
1
+ interface BuildOptions {
2
2
  cwd?: string;
3
- }): Promise<void>;
3
+ }
4
+ export declare function buildLib(options?: BuildOptions): Promise<void>;
5
+ export {};
@@ -40,3 +40,6 @@ export declare const AIGNE_OUTPUT_VALUE_SCHEMA_NAME = "aigneOutputValueSchema";
40
40
  export declare const getAigneOutputValueSchemaBlockName: (blockName: string) => string;
41
41
  export declare const GET_SERVER_SIDE_PROPS_NAME = "getServerSideProps";
42
42
  export declare const getGetServerSidePropsBlockName: (blockName: string) => string;
43
+ export declare function copyFile(src: string, dest: string): Promise<void>;
44
+ export declare function copyDirectory(src: string, dest: string): Promise<void>;
45
+ export declare function copyRecursive(src: string, dest: string): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blocklet/pages-kit-block-studio",
3
- "version": "0.6.13",
3
+ "version": "0.6.15",
4
4
  "description": "Pages Kit block studio for blocklet(s)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -141,7 +141,7 @@
141
141
  "zod": "^3.24.2",
142
142
  "zod-to-json-schema": "^3.24.4",
143
143
  "zod-to-ts": "^1.2.0",
144
- "@blocklet/pages-kit": "0.6.13"
144
+ "@blocklet/pages-kit": "0.6.15"
145
145
  },
146
146
  "devDependencies": {
147
147
  "@rollup/plugin-typescript": "^11.1.6",
@@ -167,7 +167,7 @@
167
167
  "zod": "^3.24.2",
168
168
  "zod-to-json-schema": "^3.24.4",
169
169
  "zod-to-ts": "^1.2.0",
170
- "@blocklet/pages-kit": "0.6.13"
170
+ "@blocklet/pages-kit": "0.6.15"
171
171
  },
172
172
  "scripts": {
173
173
  "lint": "eslint src --ext .mjs,.js,.jsx,.ts,.tsx",