vercel 27.2.0 → 27.3.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 +11054 -16129
  3. package/package.json +20 -18
package/README.md CHANGED
@@ -53,13 +53,13 @@ At this point you can make modifications to the CLI source code and test them ou
53
53
  cd packages/cli
54
54
  ```
55
55
 
56
- From within the `packages/cli` directory, you can use the `ts-eager` command line tool to quickly excute Vercel CLI from its TypeScript source code directly (without having to manually compile first). For example:
56
+ 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:
57
57
 
58
58
  ```bash
59
- npx ts-eager src
60
- npx ts-eager src login
61
- npx ts-eager src switch --debug
62
- npx ts-eager src dev
59
+ yarn dev deploy
60
+ yarn dev whoami
61
+ yarn dev login
62
+ yarn dev switch --debug
63
63
  ```
64
64
 
65
65
  When you are satisfied with your changes, make a commit and create a pull request!