Skip to content

Commit 67fa03d

Browse files
committed
Merge branch 'develop' into inject-exact-theme
2 parents df21470 + 26b80c6 commit 67fa03d

File tree

320 files changed

+9060
-4784
lines changed

Some content is hidden

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

320 files changed

+9060
-4784
lines changed

.all-contributorsrc

Lines changed: 37 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"packages/theme-ui/README.md"
88
],
99
"imageSize": 63,
10-
"contributorsPerLine": 11,
10+
"contributorsPerLine": 8,
1111
"commit": true,
1212
"commitConvention": "angular",
1313
"contributors": [
@@ -132,7 +132,8 @@
132132
"contributions": [
133133
"code",
134134
"bug",
135-
"doc"
135+
"doc",
136+
"example"
136137
]
137138
},
138139
{
@@ -162,7 +163,8 @@
162163
"contributions": [
163164
"code",
164165
"bug",
165-
"test"
166+
"test",
167+
"doc"
166168
]
167169
},
168170
{
@@ -1044,6 +1046,38 @@
10441046
"code",
10451047
"bug"
10461048
]
1049+
},
1050+
{
1051+
"login": "carolinmaisenbacher",
1052+
"name": "Carolin Maisenbacher",
1053+
"avatar_url": "https://avatars.githubusercontent.com/u/32734844?v=4",
1054+
"profile": "https://github.com/carolinmaisenbacher",
1055+
"contributions": [
1056+
"code",
1057+
"doc",
1058+
"test"
1059+
]
1060+
},
1061+
{
1062+
"login": "alexanderchan",
1063+
"name": "Alex Chan",
1064+
"avatar_url": "https://avatars.githubusercontent.com/u/1864372?v=4",
1065+
"profile": "https://twitter.com/alexandermchan",
1066+
"contributions": [
1067+
"doc",
1068+
"example",
1069+
"test",
1070+
"code"
1071+
]
1072+
},
1073+
{
1074+
"login": "kenny-f",
1075+
"name": "Kenny",
1076+
"avatar_url": "https://avatars.githubusercontent.com/u/1841819?v=4",
1077+
"profile": "https://github.com/kenny-f",
1078+
"contributions": [
1079+
"code"
1080+
]
10471081
}
10481082
]
10491083
}

.eslintrc.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = {
2+
parser: '@typescript-eslint/parser',
3+
parserOptions: {
4+
sourceType: 'module',
5+
},
6+
extends: ['react-app'],
7+
plugins: ['@typescript-eslint'],
8+
globals: {
9+
__PATH_PREFIX__: true,
10+
},
11+
rules: {
12+
'no-use-before-define': 'off',
13+
'react/react-in-jsx-scope': 'off',
14+
},
15+
}

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ packages/custom-properties @hasparus
1717
packages/docs @lachlanjc @hasparus
1818
# packages/editor looking for maintainers!
1919
# packages/gatsby-plugin-theme-ui looking for maintainers!
20-
# packages/gatsby-theme-code-recipes looking for maintainers!
2120
# packages/gatsby-theme-style-guide looking for maintainers!
2221
# packages/gatsby-theme-ui-blog looking for maintainers!
2322
# packages/gatsby-theme-ui-layout looking for maintainers!

.github/dependabot.yml

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: weekly
7+
open-pull-requests-limit: 10
8+
ignore:
9+
- dependency-name: babel-preset-gatsby
10+
versions:
11+
- ">= 0.11.a, < 0.12"
12+
- dependency-name: gatsby-plugin-catch-links
13+
versions:
14+
- ">= 2.10.a, < 2.11"
15+
- dependency-name: gatsby-plugin-catch-links
16+
versions:
17+
- ">= 2.9.a, < 2.10"
18+
- dependency-name: gatsby-plugin-mdx
19+
versions:
20+
- "> 1.10.0, < 1.11"
21+
- dependency-name: gatsby-plugin-mdx
22+
versions:
23+
- ">= 1.9.a, < 1.10"
24+
- dependency-name: gatsby-plugin-react-helmet
25+
versions:
26+
- ">= 3.10.a, < 3.11"
27+
- dependency-name: gatsby-plugin-react-helmet
28+
versions:
29+
- ">= 3.7.a, < 3.8"
30+
- dependency-name: gatsby-plugin-react-helmet
31+
versions:
32+
- ">= 3.9.a, < 3.10"
33+
- dependency-name: gatsby-plugin-react-helmet
34+
versions:
35+
- ">= 4.0.a, < 4.1"
36+
- dependency-name: gatsby-plugin-react-helmet
37+
versions:
38+
- ">= 4.a, < 5"
39+
- dependency-name: gatsby-source-filesystem
40+
versions:
41+
- ">= 2.10.a, < 2.11"
42+
- dependency-name: gatsby-source-filesystem
43+
versions:
44+
- "> 2.11.0, < 2.12"
45+
- dependency-name: gatsby-source-filesystem
46+
versions:
47+
- ">= 3.a, < 4"
48+
- dependency-name: tailwindcss
49+
versions:
50+
- ">= 2.a, < 3"
51+
- dependency-name: babel-preset-gatsby
52+
versions:
53+
- 0.12.2
54+
- 1.0.0
55+
- 1.1.0
56+
- 1.3.0
57+
- dependency-name: "@testing-library/react"
58+
versions:
59+
- 11.2.6
60+
- dependency-name: "@babel/plugin-transform-runtime"
61+
versions:
62+
- 7.12.15
63+
- dependency-name: gatsby-plugin-catch-links
64+
versions:
65+
- 3.0.0
66+
- 3.1.0
67+
- dependency-name: ts-jest
68+
versions:
69+
- 26.5.4
70+
- dependency-name: gatsby
71+
versions:
72+
- 3.1.1
73+
- dependency-name: type-fest
74+
versions:
75+
- 1.0.0
76+
- dependency-name: reakit
77+
versions:
78+
- 1.3.6
79+
- dependency-name: "@auto-it/conventional-commits"
80+
versions:
81+
- 10.21.0
82+
- dependency-name: lerna
83+
versions:
84+
- 4.0.0
85+
- dependency-name: "@auto-it/first-time-contributor"
86+
versions:
87+
- 10.21.0
88+
- dependency-name: prism-react-renderer
89+
versions:
90+
- 1.2.0
91+
- dependency-name: "@types/react-dom"
92+
versions:
93+
- 17.0.2
94+
- dependency-name: gatsby-plugin-mdx
95+
versions:
96+
- 2.0.0

.github/workflows/ci.yml

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,27 @@ jobs:
2828

2929
- name: Typecheck
3030
run: yarn typecheck
31+
32+
- name: Build
33+
run: yarn build
34+
35+
- name: Run Codechecks
36+
run: yarn codechecks
37+
env:
38+
CC_SECRET: ${{ secrets.CC_SECRET }}
39+
if: ${{ env.CC_SECRET != '' }}
40+
3141
release:
3242
runs-on: ubuntu-latest
3343
needs: [build]
3444
if: >
35-
!contains(github.event.head_commit.message, 'ci skip') &&
45+
!contains(github.event.head_commit.message, 'ci skip') &&
3646
!contains(github.event.head_commit.message, 'skip ci') &&
37-
(github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository)
47+
!startsWith(github.event.head_commit.message, 'chore') &&
48+
!startsWith(github.event.pull_request.title, 'chore') && (
49+
github.event_name == 'push' ||
50+
github.event.pull_request.head.repo.full_name == github.repository
51+
)
3852
steps:
3953
- uses: actions/checkout@v2
4054

@@ -47,12 +61,15 @@ jobs:
4761

4862
- uses: bahmutov/npm-install@v1
4963

50-
- name: Turnstyle
64+
- name: Queue in release turnstile
65+
id: turnstyle
66+
continue-on-error: true
5167
uses: softprops/turnstyle@v1
5268
with:
5369
abort-after-seconds: 600
5470

55-
- name: Create Release
71+
- name: Create release
72+
if: steps.turnstyle.outcome == 'success'
5673
env:
5774
GITHUB_TOKEN: ${{ secrets.AUTO_RELEASE_GH_TOKEN }}
5875
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ coverage
99
.idea
1010
.vscode
1111
.envrc
12+
.publish-log.txt
13+
.yarn-error.log
14+

0 commit comments

Comments
 (0)