Skip to content

Commit fa917ca

Browse files
committed
Merge remote-tracking branch 'makenew/public' into node-min-version
2 parents d76d20d + e047444 commit fa917ca

File tree

16 files changed

+5305
-5199
lines changed

16 files changed

+5305
-5199
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 & 62 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
@@ -36,7 +36,7 @@ jobs:
3636
- name: Generate code
3737
run: npm run generate
3838
- name: Commit
39-
uses: stefanzweifel/git-auto-commit-action@v5
39+
uses: stefanzweifel/git-auto-commit-action@v6
4040
with:
4141
commit_message: 'ci: Generate code'
4242
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
@@ -28,7 +28,8 @@ package
2828
# Temporary development files
2929
tmp
3030

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

3435
# Logs
@@ -38,7 +39,6 @@ npm-debug.log*
3839
yarn-debug.log*
3940
yarn-error.log*
4041
lerna-debug.log*
41-
.pnpm-debug.log*
4242

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

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

@@ -107,10 +101,8 @@ web_modules/
107101

108102
# dotenv environment variable files
109103
.env
110-
.env.development.local
111-
.env.test.local
112-
.env.production.local
113-
.env.local
104+
.env.*
105+
!.env.example
114106

115107
# parcel-bundler cache (https://parceljs.org/)
116108
.cache
@@ -137,6 +129,15 @@ dist
137129
.temp
138130
.cache
139131

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

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

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

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

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

165175
# Windows
166176

0 commit comments

Comments
 (0)