You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🖍 _This is an audit!_ 🖍
## Summary:
This moves off `yarn` and onto `pnpm`. It also updates package deps to latest versions. This is a minimal impact on end users since these are all dev dependencies.
Issue: Closes#1758
## Test plan:
`pnpm clean & pnpm build`
`pnpm eslint`
Author: somewhatabstract
Auditors: copilot-pull-request-reviewer[bot]
Required Reviewers:
Approved By:
Checks: ✅ 8 checks were successful, ⏭️ 1 check has been skipped
Pull Request URL: #1795
2. Install `yarn` (see [🔗yarnpkg.com](https://yarnpkg.com))
26
-
3. Run `yarn` to install the dependencies
25
+
2. Install `pnpm` using `corepack install`
26
+
3. Run `pnpm i` to install the dependencies
27
27
28
28
You can now work on `ancesdir`. We prefer [🔗Visual Studio Code](https://code.visualstudio.com/) as our development environment (it's cross-platform and awesome), but please use what you feel comfortable with (we'll even forgive you for using vim).
29
29
@@ -43,17 +43,17 @@ We love code reviews. If there are open pull requests, please feel free to revie
43
43
44
44
To ensure code quality, we use prettier, static typing, eslint, and jest. These are all executed when you submit a pull request to ensure the contribution meets our code quality standard.
45
45
46
-
To execute these operations outside of a pull request or commit operation, you can use `yarn`.
46
+
To execute these operations outside of a pull request or commit operation, you can use `pnpm`.
47
47
48
-
-`yarn typecheck`
49
-
-`yarn lint` or `yarn lint --fix` to autofix what can be
50
-
-`yarn test`
48
+
-`pnpm typecheck`
49
+
-`pnpm eslint` or `pnpm eslint --fix` to autofix what can be
50
+
-`pnpm test`
51
51
52
52
💭**REMEMBER** If you would like to contribute code changes to the project, first make sure there's a corresponding issue for the change you wish to make.
53
53
54
54
## 📦 Build And Publish
55
55
56
-
Anyone can create a local build of the distributed code by running `yarn build`.
56
+
Anyone can create a local build of the distributed code by running `pnpm build`.
0 commit comments