Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ci): Disable pyright postinstall scripts
Pyright postinstall scripts are as follow (stripped) ```json "scripts": { "postinstall": "node ./build/skipBootstrap.js || npm run install:others", "install:others": "cross-env SKIP_LERNA_BOOTSTRAP=yes lerna exec --no-bail npm install", } ``` When running `pybun install` on the pyright repository, bun execute the postinstall script and replace `npm run install:others` with `bun install:others`. But since we use pybun, we don't have a "bun" CLI available so the `bun install:others` command fail. My guess is that this postinstall step is not required to bundle pyright.
- Loading branch information