Skip to content

Commit 3a17e89

Browse files
authored
fix: consider vite base path (#38)
* fix: consider vite base path * fix pnpm version * fix formatting
1 parent 175d967 commit 3a17e89

File tree

9 files changed

+2414
-1954
lines changed

9 files changed

+2414
-1954
lines changed

.github/workflows/lint-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
# https://github.com/amannn/action-semantic-pull-request/releases
15-
- uses: amannn/action-semantic-pull-request@v4
15+
- uses: amannn/action-semantic-pull-request@v5
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
- uses: pnpm/action-setup@v2
3232
with:
33-
version: 7
33+
version: 8
3434
run_install: true
3535

3636
- name: Build

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
3636
- uses: pnpm/action-setup@v2
3737
with:
38-
version: 7
38+
version: 8
3939
run_install: true
4040

4141
- name: Install vite@${{ matrix.vite-version }}
@@ -68,7 +68,7 @@ jobs:
6868
6969
- uses: pnpm/action-setup@v2
7070
with:
71-
version: 7
71+
version: 8
7272
run_install: true
7373

7474
- name: Typecheck
@@ -98,7 +98,7 @@ jobs:
9898
9999
- uses: pnpm/action-setup@v2
100100
with:
101-
version: 7
101+
version: 8
102102
run_install: true
103103

104104
- name: Lint
@@ -128,7 +128,7 @@ jobs:
128128
129129
- uses: pnpm/action-setup@v2
130130
with:
131-
version: 7
131+
version: 8
132132
run_install: true
133133

134134
- name: Check format

package.json

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -43,26 +43,25 @@
4343
"release": "semantic-release"
4444
},
4545
"devDependencies": {
46-
"@geprog/eslint-config": "2.1.0",
47-
"@geprog/semantic-release-config": "1.0.0",
46+
"@geprog/eslint-config": "2.1.1",
47+
"@geprog/semantic-release-config": "2.0.0",
4848
"@types/supertest": "2.0.12",
49-
"@vitest/coverage-c8": "0.26.2",
50-
"c8": "7.12.0",
51-
"eslint": "8.30.0",
52-
"jsdom": "20.0.3",
53-
"prettier": "2.8.1",
54-
"semantic-release": "19.0.5",
49+
"@vitest/coverage-v8": "0.34.3",
50+
"eslint": "8.48.0",
51+
"jsdom": "22.1.0",
52+
"prettier": "3.0.3",
53+
"semantic-release": "21.1.1",
5554
"supertest": "6.3.3",
56-
"tsup": "6.5.0",
57-
"typescript": "4.9.4",
58-
"vite": "4.0.3",
59-
"vitest": "0.26.2"
55+
"tsup": "7.2.0",
56+
"typescript": "5.2.2",
57+
"vite": "4.4.9",
58+
"vitest": "0.34.3"
6059
},
6160
"peerDependencies": {
6261
"vite": "^2.0.0 || ^3.0.0 || ^4.0.0"
6362
},
6463
"engines": {
65-
"pnpm": "7"
64+
"pnpm": "8"
6665
},
6766
"publishConfig": {
6867
"access": "public"

0 commit comments

Comments
 (0)