Skip to content

Commit

Permalink
chore(@team-aliens/design-system): 전 repository에 있던 파일 복사
Browse files Browse the repository at this point in the history
  • Loading branch information
Josanghyeon authored and Josanghyeon committed Dec 15, 2022
1 parent 5efdc06 commit e5feaca
Show file tree
Hide file tree
Showing 1,814 changed files with 58,926 additions and 2 deletions.
15 changes: 15 additions & 0 deletions .babelrc
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 }]]
}
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @team-aliens/front-end
18 changes: 18 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
name: Bug report
about: 버그 발생 관련 이슈 발행
title: ''
labels: bug
assignees: ''
---

## 버그 설명 <!-- 발생한 버그에 대한 간단한 설명 작성 -->

## 버그 발생 단계 <!-- 필요할 경우 스크린샷 등 첨부 -->

## 예상 동작 <!-- 필요할 경우 스크린샷 등 첨부 -->

## 진행 사항 <!-- 할 일 목록을 만들고 진행 사항 표시 -->

- [ ] todo1
- [ ] todo2
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Feature request
about: 프로젝트 기능 개발 관련 이슈 발행
title: ''
labels: ''
assignees: ''
---

## 기능 설명 <!-- 개발할 기능에 대한 간단한 설명 작성 -->

## 진행 사항 <!-- 할 일 목록을 만들고 진행 사항 표시 -->

- [ ] todo1
- [ ] todo2
9 changes: 9 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## 개요 <!-- 작업 내역 한줄 요약, 스크린샷 등 -->

## 이슈 번호

- closes #n

## 변경사항 <!-- 필수, 상세히 작성(목록화 등)하여 리뷰어에게 도움을 주세요! -->

## 특이사항 <!-- PR을 볼 때 주의깊게 봐야하거나 말하고 싶은 점 -->
32 changes: 32 additions & 0 deletions .github/workflows/release.yml
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
32 changes: 32 additions & 0 deletions .gitignore
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
1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

yarn lint-staged
34,062 changes: 34,062 additions & 0 deletions .pnp.cjs

Large diffs are not rendered by default.

Loading

0 comments on commit e5feaca

Please sign in to comment.