@vercel/sandbox 0.0.2 → 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.
Files changed (32) hide show
  1. package/.turbo/turbo-build.log +1 -1
  2. package/.turbo/turbo-typecheck.log +1 -1
  3. package/CHANGELOG.md +6 -0
  4. package/dist/version.d.ts +1 -0
  5. package/dist/{src/version.js → version.js} +1 -1
  6. package/package.json +2 -1
  7. package/src/version.ts +1 -1
  8. package/tsconfig.json +1 -1
  9. package/dist/package.json +0 -31
  10. package/dist/scripts/inject-version.d.ts +0 -1
  11. package/dist/scripts/inject-version.js +0 -14
  12. package/dist/src/version.d.ts +0 -1
  13. /package/dist/{src/client → client}/api-error.d.ts +0 -0
  14. /package/dist/{src/client → client}/api-error.js +0 -0
  15. /package/dist/{src/client → client}/base-client.d.ts +0 -0
  16. /package/dist/{src/client → client}/base-client.js +0 -0
  17. /package/dist/{src/client → client}/client.d.ts +0 -0
  18. /package/dist/{src/client → client}/client.js +0 -0
  19. /package/dist/{src/client → client}/validators.d.ts +0 -0
  20. /package/dist/{src/client → client}/validators.js +0 -0
  21. /package/dist/{src/client → client}/with-retry.d.ts +0 -0
  22. /package/dist/{src/client → client}/with-retry.js +0 -0
  23. /package/dist/{src/create-sandbox.d.ts → create-sandbox.d.ts} +0 -0
  24. /package/dist/{src/create-sandbox.js → create-sandbox.js} +0 -0
  25. /package/dist/{src/index.d.ts → index.d.ts} +0 -0
  26. /package/dist/{src/index.js → index.js} +0 -0
  27. /package/dist/{src/utils → utils}/array.d.ts +0 -0
  28. /package/dist/{src/utils → utils}/array.js +0 -0
  29. /package/dist/{src/utils → utils}/deferred-generator.d.ts +0 -0
  30. /package/dist/{src/utils → utils}/deferred-generator.js +0 -0
  31. /package/dist/{src/utils → utils}/deferred.d.ts +0 -0
  32. /package/dist/{src/utils → utils}/deferred.js +0 -0
@@ -1,4 +1,4 @@
1
1
 
2
- > @vercel/sandbox@0.0.2 build /home/runner/work/sandbox-sdk/sandbox-sdk/packages/sandbox
2
+ > @vercel/sandbox@0.0.3 build /home/runner/work/sandbox-sdk/sandbox-sdk/packages/sandbox
3
3
  > tsc
4
4
 
@@ -1,4 +1,4 @@
1
1
 
2
- > @vercel/sandbox@0.0.2 typecheck /home/runner/work/sandbox-sdk/sandbox-sdk/packages/sandbox
2
+ > @vercel/sandbox@0.0.3 typecheck /home/runner/work/sandbox-sdk/sandbox-sdk/packages/sandbox
3
3
  > tsc --noEmit
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @vercel/sandbox
2
2
 
3
+ ## 0.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Do not include dev scripts in package output ([#16](https://github.com/vercel/sandbox-sdk/pull/16))
8
+
3
9
  ## 0.0.2
4
10
 
5
11
  ### Patch Changes
@@ -0,0 +1 @@
1
+ export declare const VERSION = "0.0.3";
@@ -2,4 +2,4 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
4
  // Autogenerated by inject-version.ts
5
- exports.VERSION = "0.0.2";
5
+ exports.VERSION = "0.0.3";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/sandbox",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -23,6 +23,7 @@
23
23
  "typescript": "5.8.3"
24
24
  },
25
25
  "scripts": {
26
+ "clean": "rm -rf node_modules dist",
26
27
  "build": "tsc",
27
28
  "typedoc": "typedoc",
28
29
  "typecheck": "tsc --noEmit",
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Autogenerated by inject-version.ts
2
- export const VERSION = "0.0.2";
2
+ export const VERSION = "0.0.3";
package/tsconfig.json CHANGED
@@ -9,5 +9,5 @@
9
9
  "module": "commonjs",
10
10
  "resolveJsonModule": true
11
11
  },
12
- "include": ["scripts/**/*", "src/**/*"]
12
+ "include": ["src/**/*"]
13
13
  }
package/dist/package.json DELETED
@@ -1,31 +0,0 @@
1
- {
2
- "name": "@vercel/sandbox",
3
- "version": "0.0.2",
4
- "description": "",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "scripts": {
8
- "build": "tsc",
9
- "typedoc": "typedoc",
10
- "typecheck": "tsc --noEmit",
11
- "inject-version": "ts-node scripts/inject-version.ts"
12
- },
13
- "keywords": [],
14
- "author": "",
15
- "license": "ISC",
16
- "dependencies": {
17
- "async-retry": "1.3.3",
18
- "form-data": "3.0.0",
19
- "jsonlines": "0.1.1",
20
- "node-fetch": "2.6.11",
21
- "zod": "3.24.4"
22
- },
23
- "devDependencies": {
24
- "@types/async-retry": "1.4.9",
25
- "@types/jsonlines": "0.1.5",
26
- "@types/node": "22.15.12",
27
- "@types/node-fetch": "2.6.12",
28
- "typedoc": "^0.28.4",
29
- "typescript": "5.8.3"
30
- }
31
- }
@@ -1 +0,0 @@
1
- export {};
@@ -1,14 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const package_json_1 = require("../package.json");
7
- const promises_1 = require("fs/promises");
8
- const path_1 = __importDefault(require("path"));
9
- async function main() {
10
- const outPath = path_1.default.resolve(__dirname, "../src/version.ts");
11
- const content = `// Autogenerated by inject-version.ts\nexport const VERSION = "${package_json_1.version}";\n`;
12
- await (0, promises_1.writeFile)(outPath, content);
13
- }
14
- main().catch(console.error);
@@ -1 +0,0 @@
1
- export declare const VERSION = "0.0.2";
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes