saito-js 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -38,6 +38,10 @@ jobs:
38
38
  run: npm ci
39
39
  # working-directory: saito-wasm
40
40
 
41
+ - name: build
42
+ if: ${{ env.latest_version != env.current_version }}
43
+ run: npm run build
44
+
41
45
  - name: Publish package
42
46
  if: ${{ env.latest_version != env.current_version }}
43
47
  run: npm publish
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "saito-js",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "js wrappings around saito-core using wasm",
5
5
  "scripts": {
6
6
  "test": "env TS_NODE_PROJECT=\"tsconfig.testing.json\" mocha --require ts-node/register 'tests/**/*.ts'",