Skip to content

Commit 728d4c4

Browse files
committed
Merge branch 'main' into adam/eslint-plugin
2 parents 8527eb1 + 078c0bb commit 728d4c4

File tree

1,186 files changed

+45527
-12730
lines changed

Some content is hidden

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

1,186 files changed

+45527
-12730
lines changed

.changeset/curly-worms-drum.md

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

.changeset/quick-eggs-kneel.md

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

.changeset/tricky-cars-cheat.md

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

.github/CODEOWNERS

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

.github/workflows/pr.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Pull Request CI
22

33
on:
4+
merge_group:
45
pull_request:
56
types: [opened, synchronize, reopened]
67

@@ -25,11 +26,11 @@ jobs:
2526
key: ${{ runner.os }}-build-cache-${{ hashFiles('package.json', 'yarn.lock', '**/src/', '!**/node_modules', '!**/dist') }}
2627

2728
# Only setup & build if there was no build cache hit
28-
- name: Use Node 16
29+
- name: Use Node 18
2930
uses: actions/setup-node@v3
3031
if: ${{ steps.build-cache.outputs.cache-hit != 'true' }}
3132
with:
32-
node-version: '16'
33+
node-version: '18'
3334
cache: yarn
3435
cache-dependency-path: 'yarn.lock'
3536

@@ -48,10 +49,10 @@ jobs:
4849
steps:
4950
- uses: actions/checkout@v3
5051

51-
- name: Use Node 16
52+
- name: Use Node 18
5253
uses: actions/setup-node@v3
5354
with:
54-
node-version: '16'
55+
node-version: '18'
5556
cache: yarn
5657
cache-dependency-path: 'yarn.lock'
5758

@@ -80,10 +81,10 @@ jobs:
8081
with:
8182
fetch-depth: 0
8283

83-
- name: Use Node 16
84+
- name: Use Node 18
8485
uses: actions/setup-node@v3
8586
with:
86-
node-version: '16'
87+
node-version: '18'
8788
cache: yarn
8889
cache-dependency-path: 'yarn.lock'
8990

@@ -115,10 +116,10 @@ jobs:
115116
steps:
116117
- uses: actions/checkout@v3
117118

118-
- name: Use Node 16
119+
- name: Use Node 18
119120
uses: actions/setup-node@v3
120121
with:
121-
node-version: '16'
122+
node-version: '18'
122123
cache: yarn
123124
cache-dependency-path: 'yarn.lock'
124125

@@ -146,10 +147,10 @@ jobs:
146147
steps:
147148
- uses: actions/checkout@v3
148149

149-
- name: Use Node 16
150+
- name: Use Node 18
150151
uses: actions/setup-node@v3
151152
with:
152-
node-version: '16'
153+
node-version: '18'
153154
cache: yarn
154155
cache-dependency-path: 'yarn.lock'
155156

.github/workflows/react17.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: React 17
22

33
on:
4+
merge_group:
45
pull_request:
56
types: [opened, synchronize, reopened]
67

@@ -15,10 +16,10 @@ jobs:
1516
steps:
1617
- uses: actions/checkout@v3
1718

18-
- name: Setup Node 16
19+
- name: Setup Node 18
1920
uses: actions/setup-node@v3
2021
with:
21-
node-version: '16'
22+
node-version: '18'
2223
cache: 'yarn'
2324

2425
- name: Install node-gyp

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ jobs:
2828
key: ${{ runner.os }}-build-cache-${{ hashFiles('package.json', 'yarn.lock', '**/src/', '!**/node_modules', '!**/dist') }}
2929

3030
# Only setup & build if there was no build cache hit
31-
- name: Use Node 16
31+
- name: Use Node 18
3232
uses: actions/setup-node@v3
3333
if: ${{ steps.build-cache.outputs.cache-hit != 'true' }}
3434
with:
35-
node-version: '16'
35+
node-version: '18'
3636
cache: yarn
3737
cache-dependency-path: 'yarn.lock'
3838

@@ -57,10 +57,10 @@ jobs:
5757
with:
5858
fetch-depth: 0
5959

60-
- name: Use Node 16
60+
- name: Use Node 18
6161
uses: actions/setup-node@v3
6262
with:
63-
node-version: '16'
63+
node-version: '18'
6464
cache: yarn
6565
cache-dependency-path: 'yarn.lock'
6666

@@ -97,10 +97,10 @@ jobs:
9797
steps:
9898
- uses: actions/checkout@v3
9999

100-
- name: Use Node 16
100+
- name: Use Node 18
101101
uses: actions/setup-node@v3
102102
with:
103-
node-version: '16'
103+
node-version: '18'
104104
cache: yarn
105105
cache-dependency-path: 'yarn.lock'
106106

.github/workflows/sizeDiff.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v3
1313

14-
- name: Use Node.js 16
14+
- name: Use Node.js 18
1515
uses: actions/setup-node@v3
1616
with:
17-
node-version: '16'
17+
node-version: '18'
1818

1919
- uses: preactjs/compressed-size-action@v2
2020
with:
2121
repo-token: ${{ secrets.GITHUB_TOKEN }}
22-
build-script: 'build'
22+
build-script: 'build --force'
2323
clean-script: 'clean'

.gitignore

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ yarn-error.log
2828

2929
# TypeScript type-checking artifact
3030
tsconfig.tsbuildinfo
31+
ts-trace/
3132

3233
# Environment variables
3334
.env
@@ -37,22 +38,26 @@ coverage/
3738

3839
# Exported TSDocs example files
3940
parsed-docs.json
40-
packages/**/tsdoc.json
41+
**/tsdoc.json
4142

4243
# Compiled story files
43-
packages/**/stories.js*
44+
**/stories.js*
4445

4546
# Local yarn releases
4647
.yarn
4748

4849
# Storybook/Chromatic logs
4950
build-storybook.log
51+
doctor-storybook.log
5052

5153
.turbo
52-
scripts/tmp.*.ts
54+
scripts/tmp.*
5355

5456
#
5557
.npmrc
5658
.changeset/pre.json
5759

5860
TODO.md
61+
62+
# PR train config (https://github.com/realyze/pr-train)
63+
.pr-train.yml

.storybook/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export default {
2-
addons: ['@lg-tools/storybook'],
2+
addons: ['@lg-tools/storybook-addon'],
33
framework: {
44
name: '@storybook/react-webpack5',
55
options: {

0 commit comments

Comments
 (0)