Skip to content

Commit

Permalink
chore: 디자인 시스템 패키지 peer dependency 추가 (#ATR-591)
Browse files Browse the repository at this point in the history
  • Loading branch information
LC-02s committed Jul 30, 2024
1 parent 2bd9611 commit e7495e9
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 2 deletions.
11 changes: 10 additions & 1 deletion packages/design-system/packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
"name": "@attraction/ds-core",
"version": "1.0.0",
"description": "",
"main": "index.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
Expand All @@ -12,6 +17,10 @@
"devDependencies": {
"@attraction/config": "workspace:^"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"keywords": [],
"author": "",
"license": "ISC"
Expand Down
Empty file.
11 changes: 10 additions & 1 deletion packages/design-system/packages/hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
"name": "@attraction/ds-hooks",
"version": "1.0.0",
"description": "",
"main": "index.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
Expand All @@ -12,6 +17,10 @@
"devDependencies": {
"@attraction/config": "workspace:^"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"keywords": [],
"author": "",
"license": "ISC"
Expand Down
12 changes: 12 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e7495e9

Please sign in to comment.