Skip to content

Commit

Permalink
refactor: migrate to monorepo with yarn berry (#103)
Browse files Browse the repository at this point in the history
* env: migrate yarn berry and monorepo

* env: setup ci

* env: remove local

* env: setup examples

* chore: arrange code

* env: examples to private

* env: setup husky

* env: change husky pre-push hooks

* env: migrate to docusaurus

* env: add website packages:

* env: fix failed website build

* env: setup release ci

* env: add @semantic-release/commit-analyzer

* env: add generate-note plugin

* env: add @semantic-release/npm

* env: remove e2e workflow

* env: remove lerna

* fix(packages/calendar): Fix artifact options

* chore(release): 1.0.0-alpha.1 [skip ci]

# @h6s/calendar-v1.0.0-alpha.1 (2021-12-29)

### Bug Fixes

* **packages/calendar:** Fix artifact options ([4ef457f](4ef457f))

* fix(packages/calendar): Arrange dependencies

* env: use workspace protocol

* feat(website): design

* chore: add assets

* env: add since flag to semantic release script

Co-authored-by: semantic-release-bot <[email protected]>
  • Loading branch information
JaeYeopHan and semantic-release-bot authored Dec 30, 2021
1 parent 81ba568 commit 0a5fbe3
Show file tree
Hide file tree
Showing 2,822 changed files with 82,850 additions and 40,465 deletions.
8 changes: 0 additions & 8 deletions .babelrc

This file was deleted.

2 changes: 1 addition & 1 deletion .codesandbox/ci.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"packages": ["./"],
"sandboxes": ["/examples/basic"],
"sandboxes": ["/examples/calendar"],
"node": "14"
}
6 changes: 5 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
jest.config.js
jest.config.js
dist
cjs
.pnp.cjs
.pnp.loader.mjs
6 changes: 3 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"extends": ["react-app", "prettier/prettier"],
"plugins": ["react-hooks", "simple-import-sort", "prettier"],
"parser": "@typescript-eslint/parser",
"extends": ["react-app"],
"plugins": ["react-hooks", "simple-import-sort"],
"rules": {
"prettier/prettier": "error",
"react-hooks/rules-of-hooks": "error",
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/Bug_Report.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ assignees: 'JaeYeopHan'

## Expected

## References
## References
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/Suggestion.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ assignees: ''

## Description

## References
## References
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

> related issue: #
## References
### References
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
with:
node-version: 14
- name: Install dependencies
run: yarn install --frozen-lockfile
run: yarn install --immutable
- name: Check Type
run: yarn typecheck
- name: Check Lint
run: yarn lint
- name: Run Test
run: yarn test
- name: Build Package
run: yarn build
13 changes: 0 additions & 13 deletions .github/workflows/compressed-size.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .github/workflows/e2e.yml

This file was deleted.

8 changes: 5 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: '14.0.0'
node-version: 14
- name: Install dependencies
run: yarn install --frozen-lockfile
run: yarn install --immutable
- name: Check Type
run: yarn typecheck
- name: Check Lint
run: yarn lint
- name: Run Test
Expand All @@ -33,4 +35,4 @@ jobs:
run: yarn semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading

0 comments on commit 0a5fbe3

Please sign in to comment.