Skip to content

Commit 7376381

Browse files
committed
yarn => pnpm cleanup
1 parent 0722c27 commit 7376381

File tree

4 files changed

+2610
-5225
lines changed

4 files changed

+2610
-5225
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

β€Žpackages/deparser/TESTING.mdβ€Ž

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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
2222
3. **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
2424
5. **Clean commits**: Stage files explicitly with `git add <file>`, never use `git add .`
2525
6. **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`**

β€Žpackages/transform/.gitignoreβ€Ž

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ Thumbs.db
1818
# Logs
1919
*.log
2020
npm-debug.log*
21-
yarn-debug.log*
22-
yarn-error.log*
2321

2422
# Coverage
2523
coverage/

0 commit comments

Comments
Β (0)