File tree Expand file tree Collapse file tree 4 files changed +2610
-5225
lines changed
Expand file tree Collapse file tree 4 files changed +2610
-5225
lines changed Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ walk(ast, visitor);
178178
179179## π οΈ Development
180180
181- This project uses Yarn workspaces and Lerna for monorepo management. See [ DEVELOPMENT.md] ( DEVELOPMENT.md ) for more info.
181+ This project uses pnpm workspaces and Lerna for monorepo management. See [ DEVELOPMENT.md] ( DEVELOPMENT.md ) for more info.
182182
183183### Setup
184184``` bash
Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ You can see `expectAstMatch` here: packages/deparser/test-utils/index.ts
1717
1818** Our systematic approach to fixing deparser issues:**
1919
20- 1 . ** One test at a time** : Focus on individual failing tests using ` yarn test --testNamePattern="specific-test"`
21- 2 . ** Always check for regressions** : After each fix, run full ` yarn test` to ensure no previously passing tests broke
20+ 1 . ** One test at a time** : Focus on individual failing tests using ` pnpm test --testNamePattern="specific-test"`
21+ 2 . ** Always check for regressions** : After each fix, run full ` pnpm test` to ensure no previously passing tests broke
22223 . ** Track progress** : Update this file with current pass/fail counts after each significant change
23- 4 . ** Build before testing** : Always run ` yarn build` after code changes before testing
23+ 4 . ** Build before testing** : Always run ` pnpm build` after code changes before testing
24245 . ** Clean commits** : Stage files explicitly with ` git add <file> ` , never use ` git add . `
25256 . ** Tight feedback loops** : Use isolated debug scripts for complex issues, but don't commit them
2626
27- ** Workflow** : Make changes β ` yarn test --testNamePattern="target-test"` β ` yarn test` (check regressions) β Update this file β Commit & push
27+ ** Workflow** : Make changes β ` pnpm test --testNamePattern="target-test"` β ` pnpm test` (check regressions) β Update this file β Commit & push
2828
29- ** When committing to TESTS.md, always run all tests β do not use testNamePattern, only ` yarn test` **
29+ ** When committing to TESTS.md, always run all tests β do not use testNamePattern, only ` pnpm test` **
Original file line number Diff line number Diff line change @@ -18,8 +18,6 @@ Thumbs.db
1818# Logs
1919* .log
2020npm-debug.log *
21- yarn-debug.log *
22- yarn-error.log *
2321
2422# Coverage
2523coverage /
You canβt perform that action at this time.
0 commit comments