webgl2 1.0.5 → 1.0.6

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.
Files changed (1) hide show
  1. package/package.json +4 -3
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "webgl2",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "WebGL2 tools to derisk large GPU projects on the web beyond toys and demos.",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "scripts": {
8
- "start": "node ./index.js",
8
+ "start": "node ./index.js",
9
9
  "build": "cargo build --target wasm32-unknown-unknown --release && cp target/wasm32-unknown-unknown/release/*.wasm .",
10
+ "build:wasm": "node scripts/build-wasm.cjs",
10
11
  "prepublishOnly": "npm run build",
11
- "test": "node --test test/*.test.js --parallel=1",
12
+ "test": "node --test test/*.test.js",
12
13
  "test:smoke": "npm run build:wasm && node ./test/smoke.js"
13
14
  },
14
15
  "wasmBuild": {