Skip to content

Commit 737e442

Browse files
chore: 레포지토리 경로 변경 (#26)
1 parent dac2845 commit 737e442

File tree

15 files changed

+28
-78
lines changed

15 files changed

+28
-78
lines changed

README.md

Lines changed: 0 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +0,0 @@
1-
# React + TypeScript + Vite
2-
3-
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4-
5-
Currently, two official plugins are available:
6-
7-
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
8-
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
9-
10-
## Expanding the ESLint configuration
11-
12-
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
13-
14-
- Configure the top-level `parserOptions` property like this:
15-
16-
```js
17-
export default tseslint.config({
18-
languageOptions: {
19-
// other options...
20-
parserOptions: {
21-
project: ['./tsconfig.node.json', './tsconfig.app.json'],
22-
tsconfigRootDir: import.meta.dirname,
23-
},
24-
},
25-
})
26-
```
27-
28-
- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`
29-
- Optionally add `...tseslint.configs.stylisticTypeChecked`
30-
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:
31-
32-
```js
33-
// eslint.config.js
34-
import react from 'eslint-plugin-react'
35-
36-
export default tseslint.config({
37-
// Set the react version
38-
settings: { react: { version: '18.3' } },
39-
plugins: {
40-
// Add the react plugin
41-
react,
42-
},
43-
rules: {
44-
// other rules...
45-
// Enable its recommended rules
46-
...react.configs.recommended.rules,
47-
...react.configs['jsx-runtime'].rules,
48-
},
49-
})
50-
```

packages/core/primitive/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
},
3030
"repository": {
3131
"type": "git",
32-
"url": "git+https://github.com/klmhyeonwoo/layer-design-system.git"
32+
"url": "git+https://github.com/Iayerapp/layer-design-system.git"
3333
},
3434
"bugs": {
35-
"url": "https://github.com/klmhyeonwoo/layer-design-system/issues"
35+
"url": "https://github.com/Iayerapp/layer-design-system/issues"
3636
}
3737
}

packages/lib/react-context/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
},
4343
"repository": {
4444
"type": "git",
45-
"url": "git+https://github.com/klmhyeonwoo/layer-design-system.git"
45+
"url": "git+https://github.com/Iayerapp/layer-design-system.git"
4646
},
4747
"bugs": {
48-
"url": "https://github.com/klmhyeonwoo/layer-design-system/issues"
48+
"url": "https://github.com/Iayerapp/layer-design-system/issues"
4949
}
5050
}

packages/lib/use-browser-layout-effect/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
},
4343
"repository": {
4444
"type": "git",
45-
"url": "git+https://github.com/klmhyeonwoo/layer-design-system.git"
45+
"url": "git+https://github.com/Iayerapp/layer-design-system.git"
4646
},
4747
"bugs": {
48-
"url": "https://github.com/klmhyeonwoo/layer-design-system/issues"
48+
"url": "https://github.com/Iayerapp/layer-design-system/issues"
4949
}
5050
}

packages/lib/use-callback-ref/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
},
3939
"repository": {
4040
"type": "git",
41-
"url": "git+https://github.com/klmhyeonwoo/layer-design-system.git"
41+
"url": "git+https://github.com/Iayerapp/layer-design-system.git"
4242
},
4343
"bugs": {
44-
"url": "https://github.com/klmhyeonwoo/layer-design-system/issues"
44+
"url": "https://github.com/Iayerapp/layer-design-system/issues"
4545
}
4646
}

packages/lib/use-composed-ref/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
},
3939
"repository": {
4040
"type": "git",
41-
"url": "git+https://github.com/klmhyeonwoo/layer-design-system.git"
41+
"url": "git+https://github.com/Iayerapp/layer-design-system.git"
4242
},
4343
"bugs": {
44-
"url": "https://github.com/klmhyeonwoo/layer-design-system/issues"
44+
"url": "https://github.com/Iayerapp/layer-design-system/issues"
4545
}
4646
}

packages/lib/use-escape-key-down/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
},
4242
"repository": {
4343
"type": "git",
44-
"url": "git+https://github.com/klmhyeonwoo/layer-design-system.git"
44+
"url": "git+https://github.com/Iayerapp/layer-design-system.git"
4545
},
4646
"bugs": {
47-
"url": "https://github.com/klmhyeonwoo/layer-design-system/issues"
47+
"url": "https://github.com/Iayerapp/layer-design-system/issues"
4848
}
4949
}

packages/lib/use-mounted/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@
4444
},
4545
"repository": {
4646
"type": "git",
47-
"url": "git+https://github.com/klmhyeonwoo/layer-design-system.git"
47+
"url": "git+https://github.com/Iayerapp/layer-design-system.git"
4848
},
4949
"bugs": {
50-
"url": "https://github.com/klmhyeonwoo/layer-design-system/issues"
50+
"url": "https://github.com/Iayerapp/layer-design-system/issues"
5151
}
5252
}

packages/ui/button/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@
4444
},
4545
"repository": {
4646
"type": "git",
47-
"url": "git+https://github.com/klmhyeonwoo/layer-design-system.git"
47+
"url": "git+https://github.com/Iayerapp/layer-design-system.git"
4848
},
4949
"bugs": {
50-
"url": "https://github.com/klmhyeonwoo/layer-design-system/issues"
50+
"url": "https://github.com/Iayerapp/layer-design-system/issues"
5151
}
5252
}

packages/ui/modal/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@
5050
},
5151
"repository": {
5252
"type": "git",
53-
"url": "git+https://github.com/klmhyeonwoo/layer-design-system.git"
53+
"url": "git+https://github.com/Iayerapp/layer-design-system.git"
5454
},
5555
"bugs": {
56-
"url": "https://github.com/klmhyeonwoo/layer-design-system/issues"
56+
"url": "https://github.com/Iayerapp/layer-design-system/issues"
5757
}
5858
}

0 commit comments

Comments
 (0)