We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72db486 commit b1b626dCopy full SHA for b1b626d
.github/workflows/release.yml
@@ -32,7 +32,7 @@ jobs:
32
version: 'latest'
33
# see https://stackoverflow.com/questions/58177786/get-the-current-pushed-tag-in-github-actions
34
- run: |
35
- export VERSION=0.0.4 # ${{ github.event.release.tag_name }}
+ export VERSION=0.0.5 # ${{ github.event.release.tag_name }}
36
./scripts/publish-server.sh $VERSION
37
# rustup target add wasm32-unknown-unknown # automatically done by wasm-pack
38
./scripts/publish-client.sh $VERSION
scripts/build-remote-client.sh
@@ -76,7 +76,7 @@ sed -i "s/const imports = __wbg_get_imports();/return __wbg_get_imports();/" dis
76
pushd js
77
mkdir -p dist
78
rm -rf dist/*
79
-npn install
+npm install
80
npm run build
81
cp -r ../assets dist/
82
cp package.json dist/
0 commit comments