Skip to content

Commit

Permalink
chore(turbo, pnpm): migrate from yarn workspaces to turbo with pnpm
Browse files Browse the repository at this point in the history
fix #266
  • Loading branch information
manudeli committed Feb 12, 2023
1 parent dcf1477 commit 95742be
Show file tree
Hide file tree
Showing 1,399 changed files with 10,803 additions and 44,029 deletions.
10 changes: 0 additions & 10 deletions .editorconfig

This file was deleted.

6 changes: 6 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.vscode
dist
esm
.eslintrc.js
packlint.config.mjs
node_modules
121 changes: 0 additions & 121 deletions .eslintrc.js

This file was deleted.

2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @manudeli @yungjurick
* @manudeli
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
name: Bug report
about: 'Report a bug '
title: '[BUG]:'
labels: ''
assignees: ''
---

### **Package Scope**

<!-- Is this issue related to a specific package? -->

Package name:

### **Describe the bug**

<!-- A clear and concise description of what the bug is. -->

### **Expected behavior**

<!-- A clear and concise description of what you expected to happen. -->

### **To Reproduce**

<!--
Minimal reproducible code
or describe steps to reproduce.
Optional, but recommended.
-->

### **Possible Solution**

<!-- If you have suggestions on a fix for the bug -->

### **Additional context**

<!-- Add any other context about the problem here. -->
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: Feature request
about: Suggest an idea for this project
title: '[Feature]:'
labels: ''
assignees: ''
---

### **Package Scope**

<!--
Is this feature added to an existing package?
Or make a new one?
-->

- [ ] Add to an existing package
- [ ] New package

<!-- Write the package name here -->

Package name:

### **Overview**

<!-- A clear and concise description about the feature -->

### **Describe the solution you'd like**

<!-- A clear and concise description of what you want to happen -->

### **Additional context**

<!-- Add any other context or screenshots about the feature request here -->
14 changes: 4 additions & 10 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
## 💁 설명 <!-- 무엇에 대한 PR인지 설명해주세요. -->
# Overview

## 🔗 연결된 이슈 <!-- 머지가 완료되면 연결된 이슈가 자동으로 닫히도록 closes 키워드 뒤에 이슈 번호를 적습니다. `ex. closes #1` -->

closes

## 🚨 PR 포인트 <!-- PR을 볼 때 중점적으로 봐야 할 부분을 적어주세요-->

- 사항1

## 📸 스크린 샷 <!-- 구현 내용의 스크린 샷을 첨부해주세요-->
<!--
A clear and concise description of what this pr is about.
-->
27 changes: 0 additions & 27 deletions .github/workflows/publish.yml

This file was deleted.

44 changes: 33 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,33 @@
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# Swap the comments on the following lines if you don't wish to use zero-installs
# Documentation here: https://yarnpkg.com/features/zero-installs
!.yarn/cache
#.pnp.*
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
node_modules
.pnp
.pnp.js

# testing
coverage

# next.js
.next/
out/
build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
.pnpm-debug.log*

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# turbo
.turbo

node_modules
1 change: 0 additions & 1 deletion .husky/.gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

yarn commitlint --edit $1
pnpm commitlint --edit $1
3 changes: 2 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

yarn lint-staged
pnpm lint
pnpm lint-staged
3 changes: 3 additions & 0 deletions .lintstagedrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"*.{ts,tsx}": ["prettier --write"]
}
14 changes: 0 additions & 14 deletions .lintstagedrc.js

This file was deleted.

1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

Loading

0 comments on commit 95742be

Please sign in to comment.