Pete Gonzalez
Pete Gonzalez
> thanks for the insights. I think we're past the point of adopting eslint-bulk wholesale, but would welcome your feedback on this RFC to see if there are any salient...
@hardfist maybe this is by design?
The [rspack](https://www.npmjs.com/package/rspack) package seems to be defunct but owned by @hardfist. Maybe also the `rspack` README.md could have a deprecation notice. And also the `postinstall` lifecycle script could print a...
[@rushstack/eslint-patch](https://www.npmjs.com/package/@rushstack/eslint-patch#eslint-bulk-suppressions-feature) solves this using the [eslint-bulk](https://www.npmjs.com/package/@rushstack/eslint-bulk) CLI. We intend to propose integrating it directly into official ESLint eventually. The feature design is mostly stabilized, however the `scopeId` spec will not...
> Renovate searches for all `package.json` files in the repo. We only filter some test folders with `config:base` preset This is probably okay. It's not the Rush way, but it's...
Architecturally, the design is prescriptive: the Rush projects are enumerated explicitly in Rush's config files (mainly rush.json) and all other package.json files can be assumed to be test assets, or...
Ohhh wait a sec... I think you're actually asking about local project references (where the a dependency gets symlinked to another project in the repo, rather than being installed from...
I agree with everything @mmkal said. > In the repo I've been testing on it's `common/config/rush/pnpm-lock.yaml`. I suspect a fuller list would be `common/config/rush/{pnpm-lock.yaml,shrinkwrap.yaml,yarn.lock,npm-shrinkwrap.json}` based on a quick look at...
### More weirdness After completing steps 1 and 2 above, try this: 3. `rm pnpm-lock.yaml` 4. `rm -Rf node_modules` (in the repository root, but not under the project folders) 5....
We were able to work around this problem by using the [dependenciesMeta.*.injected](https://pnpm.io/package_json#dependenciesmetainjected) feature like this: ```js { "name": "test-project", "version": "0.0.0", "dependencies": { "@react-navigation/core": "^5.15.0", "react": "workspace:*" }, "dependenciesMeta": {...