Skip to content

Commit

Permalink
fix: consider vite base path (#38)
Browse files Browse the repository at this point in the history
* fix: consider vite base path

* fix pnpm version

* fix formatting
  • Loading branch information
lukashass committed Aug 31, 2023
1 parent 175d967 commit 3a17e89
Show file tree
Hide file tree
Showing 9 changed files with 2,414 additions and 1,954 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
runs-on: ubuntu-latest
steps:
# https://github.com/amannn/action-semantic-pull-request/releases
- uses: amannn/action-semantic-pull-request@v4
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
run_install: true

- name: Build
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
run_install: true

- name: Install vite@${{ matrix.vite-version }}
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
run_install: true

- name: Typecheck
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
run_install: true

- name: Lint
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
run_install: true

- name: Check format
Expand Down
25 changes: 12 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,26 +43,25 @@
"release": "semantic-release"
},
"devDependencies": {
"@geprog/eslint-config": "2.1.0",
"@geprog/semantic-release-config": "1.0.0",
"@geprog/eslint-config": "2.1.1",
"@geprog/semantic-release-config": "2.0.0",
"@types/supertest": "2.0.12",
"@vitest/coverage-c8": "0.26.2",
"c8": "7.12.0",
"eslint": "8.30.0",
"jsdom": "20.0.3",
"prettier": "2.8.1",
"semantic-release": "19.0.5",
"@vitest/coverage-v8": "0.34.3",
"eslint": "8.48.0",
"jsdom": "22.1.0",
"prettier": "3.0.3",
"semantic-release": "21.1.1",
"supertest": "6.3.3",
"tsup": "6.5.0",
"typescript": "4.9.4",
"vite": "4.0.3",
"vitest": "0.26.2"
"tsup": "7.2.0",
"typescript": "5.2.2",
"vite": "4.4.9",
"vitest": "0.34.3"
},
"peerDependencies": {
"vite": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"engines": {
"pnpm": "7"
"pnpm": "8"
},
"publishConfig": {
"access": "public"
Expand Down
Loading

0 comments on commit 3a17e89

Please sign in to comment.