vercel 37.14.0 → 39.0.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/README.md +5 -5
- package/dist/index.js +4966 -3710
- package/package.json +7 -7
package/README.md
CHANGED
@@ -49,15 +49,15 @@ At this point you can make modifications to the CLI source code and test them ou
|
|
49
49
|
cd packages/cli
|
50
50
|
```
|
51
51
|
|
52
|
-
### `pnpm
|
52
|
+
### `pnpm vercel <cli-commands...>`
|
53
53
|
|
54
54
|
From within the `packages/cli` directory, you can use the "dev" script to quickly execute Vercel CLI from its TypeScript source code directly (without having to manually compile first). For example:
|
55
55
|
|
56
56
|
```bash
|
57
|
-
pnpm
|
58
|
-
pnpm
|
59
|
-
pnpm
|
60
|
-
pnpm
|
57
|
+
pnpm vercel deploy
|
58
|
+
pnpm vercel whoami
|
59
|
+
pnpm vercel login
|
60
|
+
pnpm vercel switch --debug
|
61
61
|
```
|
62
62
|
|
63
63
|
When you are satisfied with your changes, make a commit and create a pull request!
|