Skip to content

Commit 2d2a5d5

Browse files
committed
Merge branch 'eslint-v10'
2 parents d5a8029 + e88deab commit 2d2a5d5

28 files changed

+2893
-4009
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG VARIANT="20"
1+
ARG VARIANT="22"
22

33
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:${VARIANT}
44

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"build": {
44
"dockerfile": "Dockerfile",
55
"args": {
6-
"VARIANT": "20"
6+
"VARIANT": "22"
77
}
88
},
99
"extensions": [

.eslintrc.json

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

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ inputs:
66
node_version:
77
description: The Node.js version.
88
required: false
9-
default: '20'
9+
default: '22'
1010
registry_url:
1111
description: The Node.js package registry URL.
1212
required: false

.github/workflows/_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
description: The Node.js version.
99
type: string
1010
required: false
11-
default: '20'
11+
default: '22'
1212
outputs:
1313
artifact_name:
1414
description: The artifact name.

.github/workflows/check.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
os:
2121
- ubuntu-latest
2222
node:
23-
- '18'
2423
- '20'
24+
- '22'
2525
include:
2626
- os: ubuntu-latest
2727
os_name: Linux
@@ -42,8 +42,8 @@ jobs:
4242
fail-fast: false
4343
matrix:
4444
node:
45-
- '18'
4645
- '20'
46+
- '22'
4747
steps:
4848
- name: Checkout
4949
uses: actions/checkout@v4
@@ -67,8 +67,8 @@ jobs:
6767
os:
6868
- ubuntu-latest
6969
node:
70-
- '18'
7170
- '20'
71+
- '22'
7272
include:
7373
- os: ubuntu-latest
7474
os_name: Linux
@@ -83,7 +83,7 @@ jobs:
8383
name: ${{ needs.build.outputs.artifact_name }}
8484
path: .
8585
- name: Find packages
86-
uses: tj-actions/glob@v21
86+
uses: tj-actions/glob@v22
8787
id: packages
8888
with:
8989
files: '*.tgz'
@@ -113,8 +113,8 @@ jobs:
113113
fail-fast: false
114114
matrix:
115115
node:
116-
- '18'
117116
- '20'
117+
- '22'
118118
steps:
119119
- name: Checkout
120120
uses: actions/checkout@v4

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Format
3333
run: npm run format
3434
- name: Commit
35-
uses: stefanzweifel/git-auto-commit-action@v5
35+
uses: stefanzweifel/git-auto-commit-action@v6
3636
if: always()
3737
with:
3838
commit_message: 'ci: Format code'

.github/workflows/generate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
env:
3939
AVA_FORCE_CI: not-ci
4040
- name: Commit
41-
uses: stefanzweifel/git-auto-commit-action@v5
41+
uses: stefanzweifel/git-auto-commit-action@v6
4242
with:
4343
commit_message: 'ci: Generate code'
4444
commit_user_name: ${{ secrets.GIT_USER_NAME }}

.github/workflows/semantic-release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ run-name: Semantic Release from ${{ github.ref_name }}
66
on:
77
push:
88
branches:
9-
- '**'
9+
- 'main'
10+
- 'next'
11+
- 'next-major'
12+
- 'beta'
13+
- 'alpha'
14+
- '*.x'
1015

1116
concurrency:
1217
group: ${{ github.workflow }}-${{ github.ref_name }}

.gitignore

Lines changed: 27 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ package
2929
# Temporary development files
3030
tmp
3131

32-
# Yarn lockfile (only package-lock.json supported)
32+
# Other lockfiles (only package-lock.json supported)
33+
pnpm-lock.yaml
3334
yarn.lock
3435

3536
# Logs
@@ -39,7 +40,6 @@ npm-debug.log*
3940
yarn-debug.log*
4041
yarn-error.log*
4142
lerna-debug.log*
42-
.pnpm-debug.log*
4343

4444
# Diagnostic reports (https://nodejs.org/api/report.html)
4545
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
@@ -91,12 +91,6 @@ web_modules/
9191
# Optional stylelint cache
9292
.stylelintcache
9393

94-
# Microbundle cache
95-
.rpt2_cache/
96-
.rts2_cache_cjs/
97-
.rts2_cache_es/
98-
.rts2_cache_umd/
99-
10094
# Optional REPL history
10195
.node_repl_history
10296

@@ -108,10 +102,8 @@ web_modules/
108102

109103
# dotenv environment variable files
110104
.env
111-
.env.development.local
112-
.env.test.local
113-
.env.production.local
114-
.env.local
105+
.env.*
106+
!.env.example
115107

116108
# parcel-bundler cache (https://parceljs.org/)
117109
.cache
@@ -138,6 +130,15 @@ dist
138130
.temp
139131
.cache
140132

133+
# Sveltekit cache directory
134+
.svelte-kit/
135+
136+
# vitepress build output
137+
**/.vitepress/dist
138+
139+
# vitepress cache directory
140+
**/.vitepress/cache
141+
141142
# Docusaurus cache and generated files
142143
.docusaurus
143144

@@ -150,18 +151,27 @@ dist
150151
# DynamoDB Local files
151152
.dynamodb/
152153

154+
# Firebase cache directory
155+
.firebase/
156+
153157
# TernJS port file
154158
.tern-port
155159

156160
# Stores VSCode versions used for testing VSCode extensions
157161
.vscode-test
158162

159-
# yarn v2
160-
.yarn/cache
161-
.yarn/unplugged
162-
.yarn/build-state.yml
163-
.yarn/install-state.gz
163+
# yarn v3
164164
.pnp.*
165+
.yarn/*
166+
!.yarn/patches
167+
!.yarn/plugins
168+
!.yarn/releases
169+
!.yarn/sdks
170+
!.yarn/versions
171+
172+
# Vite logs files
173+
vite.config.js.timestamp-*
174+
vite.config.ts.timestamp-*
165175

166176
# Windows
167177

0 commit comments

Comments
 (0)