Skip to content

Commit f82f6d8

Browse files
committed
yarn
Signed-off-by: Sora Morimoto <[email protected]>
1 parent 2acbd64 commit f82f6d8

File tree

18 files changed

+89123
-85130
lines changed

18 files changed

+89123
-85130
lines changed

.github/workflows/workflow.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,17 @@ jobs:
2626

2727
- run: corepack enable
2828

29-
- run: pnpm install --frozen-lockfile
29+
- run: yarn install --immutable
3030

3131
- if: always()
32-
run: pnpm lint
32+
run: yarn lint
3333

3434
- if: always()
35-
run: pnpm typecheck
35+
run: yarn typecheck
3636

3737
- name: Ensure dist directory is up-to-date
3838
if: always()
39-
run: pnpm build && git diff --exit-code --ignore-cr-at-eol
39+
run: yarn build && git diff --exit-code --ignore-cr-at-eol
4040

4141
test:
4242
name: Test

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
/.yarn/*
2+
!/.yarn/releases/
13
/.turbo/
24
/node_modules/

.npmrc

-1
This file was deleted.

.yarn/releases/yarn-4.4.0.cjs

+925
Large diffs are not rendered by default.

.yarnrc.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
defaultSemverRangePrefix: ""
2+
3+
nodeLinker: node-modules
4+
5+
preferInteractive: true
6+
7+
yarnPath: .yarn/releases/yarn-4.4.0.cjs

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ To regenerated the compiled JavaScript files in `dist/`, call:
1010

1111
```
1212
corepack enable
13-
pnpm install --frozen-lockfile
14-
pnpm build
13+
yarn install --immutable
14+
yarn build
1515
```

0 commit comments

Comments
 (0)