Skip to content

Commit 80fb02a

Browse files
Merge d97a4f4 into 094610c
2 parents 094610c + d97a4f4 commit 80fb02a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+4735
-2097
lines changed

.changeset/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "restricted",
8+
"baseBranch": "master",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

.circleci/config.yml

Lines changed: 0 additions & 44 deletions
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 38 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 11 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,14 @@
1-
name: Release Workflow
1+
name: Main Workflow
22

33
on:
44
push:
5-
branches:
5+
branches-ignore:
66
- master
7+
workflow_dispatch:
78

89
concurrency: ${{ github.workflow }}-${{ github.ref }}
910

1011
jobs:
11-
lint:
12-
name: Lint
13-
runs-on: ubuntu-latest
14-
steps:
15-
- name: Checkout Repo
16-
uses: actions/checkout@v3
17-
18-
- name: Setup Node.js 16.x
19-
uses: actions/setup-node@v3
20-
with:
21-
node-version: 16.x
22-
23-
- name: Install Dependencies
24-
run: yarn
25-
26-
- name: Lint Applications and Packages
27-
run: yarn lint
28-
29-
3012
build:
3113
name: Build
3214
runs-on: ubuntu-latest
@@ -45,8 +27,8 @@ jobs:
4527
- name: Build Applications and Packages
4628
run: yarn build
4729

48-
test:
49-
name: Test
30+
lint:
31+
name: Lint
5032
runs-on: ubuntu-latest
5133
steps:
5234
- name: Checkout Repo
@@ -60,11 +42,11 @@ jobs:
6042
- name: Install Dependencies
6143
run: yarn
6244

63-
- name: Test Applications and Packages
64-
run: yarn test
45+
- name: Lint Applications and Packages
46+
run: yarn lint
6547

66-
release:
67-
name: Release
48+
test:
49+
name: Test
6850
runs-on: ubuntu-latest
6951
steps:
7052
- name: Checkout Repo
@@ -78,11 +60,5 @@ jobs:
7860
- name: Install Dependencies
7961
run: yarn
8062

81-
- name: Create Release Pull Request or Publish to npm
82-
id: changesets
83-
uses: changesets/action@v1
84-
with:
85-
publish: yarn release
86-
env:
87-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
88-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
63+
- name: Test Applications and Packages
64+
run: yarn test

.github/workflows/release.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Release Workflow
2+
3+
on:
4+
workflow_dispatch:
5+
pull_request:
6+
7+
concurrency: ${{ github.workflow }}-${{ github.ref }}
8+
9+
jobs:
10+
release:
11+
name: Release
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout Repo
15+
uses: actions/checkout@v3
16+
17+
- name: Setup Node.js 16.x
18+
uses: actions/setup-node@v3
19+
with:
20+
node-version: 16.x
21+
22+
- name: Install Dependencies
23+
run: yarn
24+
25+
- name: Create Release Pull Request or Publish to npm
26+
id: changesets
27+
uses: changesets/action@v1
28+
with:
29+
publish: yarn release
30+
env:
31+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.gitignore

Lines changed: 28 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,33 @@
1-
# These are some examples of commonly ignored file patterns.
2-
# You should customize this list as applicable to your project.
3-
# Learn more about .gitignore:
4-
# https://www.atlassian.com/git/tutorials/saving-changes/gitignore
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
52

6-
# Node artifact files
7-
node_modules/
8-
dist/
3+
# dependencies
4+
node_modules
5+
.pnp
6+
.pnp.js
97

10-
# Compiled Java class files
11-
*.class
8+
# testing
9+
coverage
1210

13-
# Compiled Python bytecode
14-
*.py[cod]
11+
# next.js
12+
.next/
13+
out/
14+
build
1515

16-
# Log files
17-
*.log
18-
19-
# Package files
20-
*.jar
21-
22-
# Maven
23-
target/
24-
dist/
25-
26-
# JetBrains IDE
27-
.idea/
28-
29-
# Unit test reports
30-
TEST*.xml
31-
32-
# Generated by MacOS
16+
# misc
3317
.DS_Store
34-
35-
# Generated by Windows
36-
Thumbs.db
37-
38-
# Applications
39-
*.app
40-
*.exe
41-
*.war
42-
43-
# Large media files
44-
*.mp4
45-
*.tiff
46-
*.avi
47-
*.flv
48-
*.mov
49-
*.wmv
50-
51-
# typescript
52-
*.tsbuildinfo
18+
*.pem
19+
20+
# debug
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*
24+
.pnpm-debug.log*
25+
26+
# local env files
27+
.env.local
28+
.env.development.local
29+
.env.test.local
30+
.env.production.local
31+
32+
# turbo
33+
.turbo

.husky/pre-commit

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
33

4-
npx pretty-quick --staged
4+
npx lint-staged

.prettierrc

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)