Skip to content

Commit

Permalink
fix(demo): avoid deploy error by pinning TypeScript peer dependency
Browse files Browse the repository at this point in the history
release-npm
  • Loading branch information
tobua committed Feb 2, 2024
1 parent 222db17 commit f8cb2f5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,6 @@ jobs:
# Tests running in parallel and browser environment cannot be torn down properly after tests.
- name: 🧪 Test Browser
run: bun run test:browser
- name: 🛠️ Build Demo
run: |
cd demo
bun install
bunx papua build
- name: 🚀 Publish Documentation
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: publish
folder: demo/dist
- name: 📢 Release
uses: tobua/release-npm-action@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions demo/api/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"target": "esnext",
"moduleResolution": "nodenext",
"module": "nodenext",
"moduleResolution": "NodeNext",
"module": "NodeNext",
},
}
3 changes: 3 additions & 0 deletions demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,8 @@
},
"devDependencies": {
"vercel": "^33.4.1"
},
"overrides": {
"typescript": ">= 5"
}
}

0 comments on commit f8cb2f5

Please sign in to comment.