-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(@team-aliens/design-system): 전 repository에 있던 파일 복사
- Loading branch information
Josanghyeon
authored and
Josanghyeon
committed
Dec 15, 2022
1 parent
5efdc06
commit e5feaca
Showing
1,814 changed files
with
58,926 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"targets": "> 0.25%, not dead", | ||
"useBuiltIns": "usage", | ||
"corejs": 3 | ||
} | ||
], | ||
"@babel/react", | ||
"@babel/typescript" | ||
], | ||
"plugins": [["@babel/plugin-transform-runtime", { "corejs": 3 }]] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @team-aliens/front-end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Bug report | ||
about: 버그 발생 관련 이슈 발행 | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
--- | ||
|
||
## 버그 설명 <!-- 발생한 버그에 대한 간단한 설명 작성 --> | ||
|
||
## 버그 발생 단계 <!-- 필요할 경우 스크린샷 등 첨부 --> | ||
|
||
## 예상 동작 <!-- 필요할 경우 스크린샷 등 첨부 --> | ||
|
||
## 진행 사항 <!-- 할 일 목록을 만들고 진행 사항 표시 --> | ||
|
||
- [ ] todo1 | ||
- [ ] todo2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
name: Feature request | ||
about: 프로젝트 기능 개발 관련 이슈 발행 | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
--- | ||
|
||
## 기능 설명 <!-- 개발할 기능에 대한 간단한 설명 작성 --> | ||
|
||
## 진행 사항 <!-- 할 일 목록을 만들고 진행 사항 표시 --> | ||
|
||
- [ ] todo1 | ||
- [ ] todo2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## 개요 <!-- 작업 내역 한줄 요약, 스크린샷 등 --> | ||
|
||
## 이슈 번호 | ||
|
||
- closes #n | ||
|
||
## 변경사항 <!-- 필수, 상세히 작성(목록화 등)하여 리뷰어에게 도움을 주세요! --> | ||
|
||
## 특이사항 <!-- PR을 볼 때 주의깊게 봐야하거나 말하고 싶은 점 --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: github action checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: use Node 16 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|
||
- name: Install dependencies | ||
run: yarn install --immutable | ||
|
||
- name: Build packages | ||
run: yarn build | ||
|
||
- name: Release | ||
if: success() | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: yarn semantic-release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
/dist | ||
|
||
# misc | ||
.DS_Store | ||
.env | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# IntelliJ IDEA | ||
.idea | ||
*.iml | ||
|
||
.yarn/unplugged | ||
.yarn/build-state.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
yarn lint-staged |
Oops, something went wrong.