Skip to content

Commit

Permalink
fix: change package manager to yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
camera-2018 committed Jan 16, 2023
1 parent 5e9cbd2 commit a2e40c7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: bahmutov/npm-install@v1

- name: 🔬 Lint
run: pnpm lint:strict
run: yarn lint:strict

typecheck:
name: ʦ TypeScript
Expand All @@ -47,4 +47,4 @@ jobs:
uses: bahmutov/npm-install@v1

- name: 🔎 Type check
run: pnpm typecheck
run: yarn typecheck
2 changes: 1 addition & 1 deletion frontend/netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[build]
publish = "dist"
command = "pnpm run build"
command = "yarn build"

[[redirects]]
from = "/*"
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
},
"lint-staged": {
"**/*.{js,ts,vue,html}": [
"pnpm lint:fix"
"yarn lint:fix"
]
}
}

0 comments on commit a2e40c7

Please sign in to comment.