Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use new H5WasmLocalFileProvider to load local files #5

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install pnpm ⚙️
uses: pnpm/action-setup@v2
with:
version: 8.x
version: 9.x

- name: Restore cache 📌
uses: actions/cache@v3
Expand Down
6 changes: 6 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Enforce Node and pnpm versions as specified in `package.json`
engine-strict=true

# Don't check exact pnpm version in `packageManager` field (required by Netlify)
package-manager-strict=false

# Save exact dependency versions in `package.json`
save-prefix=""

Expand Down
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
},
"engines": {
"node": "20.x",
"pnpm": "8.x"
"pnpm": "9.x"
},
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"start": "vite",
Expand All @@ -25,8 +26,8 @@
"analyze": "npx source-map-explorer 'build/static/js/*.js'"
},
"dependencies": {
"@h5web/app": "11.1.1",
"@h5web/h5wasm": "11.1.1",
"@h5web/app": "11.2.0",
"@h5web/h5wasm": "11.2.0",
"@react-hookz/web": "15.1.0",
"h5wasm-plugins": "0.0.3",
"immer": "9.0.15",
Expand All @@ -45,15 +46,15 @@
"@types/node": "^20.10.5",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"@vitejs/plugin-react": "2.1.0",
"@vitejs/plugin-react": "4.2.1",
"babel-preset-react-app": "10.0.1",
"eslint": "8.56.0",
"eslint-config-galex": "4.5.2",
"npm-run-all": "4.1.5",
"prettier": "3.1.1",
"typescript": "5.0.4",
"vite": "3.1.1",
"vite-plugin-checker": "0.6.2",
"vite": "5.1.6",
"vite-plugin-checker": "0.6.4",
"vite-plugin-eslint": "1.8.1"
},
"pnpm": {
Expand Down
Loading
Loading