Skip to content

Commit fcef9a4

Browse files
committed
chore: pnpm 이전
1 parent 94c00c6 commit fcef9a4

14 files changed

+7066
-10845
lines changed

.gitignore

-11
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
# dependencies
66
/node_modules
7-
/.pnp
8-
.pnp.js
97

108
# testing
119
/coverage
@@ -48,12 +46,3 @@ sitemap*.xml
4846

4947
# generated files
5048
generated
51-
52-
# yarn 2 no zero-installs
53-
.yarn/*
54-
!.yarn/patches
55-
!.yarn/releases
56-
!.yarn/plugins
57-
!.yarn/sdks
58-
!.yarn/versions
59-
.pnp.*

.husky/commit-msg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
yarn commitlint --edit $1 --verbose
4+
pnpm commitlint --edit $1 --verbose

.husky/pre-commit

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
# yarn lint-staged
5-
# yarn type-check
4+
# pnpm lint-staged
5+
# pnpm type-check

.husky/pre-push

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
yarn type-check
5-
yarn lint
4+
pnpm type-check
5+
pnpm lint

.npmrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@fortawesome:registry=https://npm.fontawesome.com/
2+
//npm.fontawesome.com/:_authToken=${FONTAWESOME_NPM_AUTH_TOKEN}

.tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
nodejs 16.15.1
2-
yarn 1.22.18
2+
pnpm 7.5.2

.vscode/launch.json

-30
This file was deleted.

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

-546
This file was deleted.

.yarn/releases/yarn-berry.cjs

-785
This file was deleted.

.yarnrc.yml

-15
This file was deleted.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414

1515
- vscode - 개발 에디터
1616
- [direnv](https://direnv.net/)로 환경 변수를 관리합니다.
17-
- Node.js 와 yarn[asdf](https://asdf-vm.com/)로 설치합니다. (`.tool-versions` 파일 참고)
17+
- Node.js 와 pnpm[asdf](https://asdf-vm.com/)로 설치합니다. (`.tool-versions` 파일 참고)
1818
- font awesome pro 여야 합니다.
1919

2020
개발 서버를 실행시키려면 다음 명령을 실행합니다.
2121

2222
```bash
23-
yarn dev
23+
pnpm dev
2424
```
2525

2626
## 개발 유의사항

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"lint": "next lint",
1111
"type-check": "tsc --noEmit",
1212
"codegen": "cat src/modules/supabase/supabase-types-beginning.txt > src/modules/supabase/supabase-types.ts && openapi-typescript \"${NEXT_PUBLIC_SUPABASE_URL}/rest/v1/?apikey=${NEXT_PUBLIC_SUPABASE_ANON_KEY}\" >> src/modules/supabase/supabase-types.ts",
13-
"upgrade": "yarn upgrade-interactive",
1413
"release": "standard-version",
1514
"push-release": "git push --follow-tags origin main",
1615
"prepare": "husky install",
@@ -23,6 +22,7 @@
2322
"@fortawesome/pro-solid-svg-icons": "^6.1.1",
2423
"@fortawesome/react-fontawesome": "^0.2.0",
2524
"@headlessui/react": "^1.6.6",
25+
"@next/env": "^12.2.3",
2626
"@supabase/supabase-js": "^1.35.4",
2727
"@tailwindcss/forms": "^0.5.2",
2828
"axios": "^0.27.2",

0 commit comments

Comments
 (0)