vercel 37.14.0 → 38.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.
Files changed (3) hide show
  1. package/README.md +5 -5
  2. package/dist/index.js +4772 -3689
  3. package/package.json +6 -6
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 dev <cli-commands...>`
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 dev deploy
58
- pnpm dev whoami
59
- pnpm dev login
60
- pnpm dev switch --debug
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!