sandbox 2.0.1 → 2.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/LICENSE +1 -1
- package/README.md +5 -12
- package/dist/{app-rsOUZPpL.mjs → app-JwdJjZ6c.mjs} +8322 -8125
- package/dist/app-JwdJjZ6c.mjs.map +1 -0
- package/dist/index.mjs +1 -1
- package/dist/pty-server-linux-x86_64 +0 -0
- package/dist/sandbox.mjs +1 -1
- package/package.json +3 -3
- package/dist/app-rsOUZPpL.mjs.map +0 -1
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -4,6 +4,11 @@ Command line interface for Vercel Sandbox.
|
|
|
4
4
|
|
|
5
5
|
Read the full documentation at [vercel.com/docs/vercel-sandbox/cli-reference](https://vercel.com/docs/vercel-sandbox/cli-reference).
|
|
6
6
|
|
|
7
|
+
## Packages
|
|
8
|
+
|
|
9
|
+
- [`@vercel/sandbox`](https://www.npmjs.com/package/@vercel/sandbox) - The SDK for programmatic access to Vercel Sandbox. [Source](https://github.com/vercel/sandbox/tree/main/packages/vercel-sandbox) | [Documentation](https://vercel.com/docs/vercel-sandbox/sdk-reference)
|
|
10
|
+
- [`sandbox`](https://www.npmjs.com/package/sandbox) (this package) - The CLI for interacting with Vercel Sandbox from the command line. [Source](https://github.com/vercel/sandbox/tree/main/packages/sandbox) | [Documentation](https://vercel.com/docs/vercel-sandbox/cli-reference)
|
|
11
|
+
|
|
7
12
|
## Installation
|
|
8
13
|
|
|
9
14
|
```bash
|
|
@@ -17,15 +22,3 @@ sandbox create # Create a new sandbox
|
|
|
17
22
|
sandbox ls # List your sandboxes
|
|
18
23
|
sandbox --help # View all commands
|
|
19
24
|
```
|
|
20
|
-
|
|
21
|
-
## SDK
|
|
22
|
-
|
|
23
|
-
For programmatic access to Vercel Sandbox, use the [`@vercel/sandbox`](https://www.npmjs.com/package/@vercel/sandbox) package instead:
|
|
24
|
-
|
|
25
|
-
```bash
|
|
26
|
-
pnpm add @vercel/sandbox
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
```ts
|
|
30
|
-
import { Sandbox } from "@vercel/sandbox";
|
|
31
|
-
```
|