@quake2ts/engine 0.0.845 → 0.0.848
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.
- package/package.json +14 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quake2ts/engine",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.848",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/cjs/index.cjs",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"_comment_gl": "gl is optional only in test-utils and installed on demand and in the webgl github action",
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"gl-matrix": "^3.4.4",
|
|
44
|
-
"@quake2ts/shared": "0.0.
|
|
44
|
+
"@quake2ts/shared": "0.0.848"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@wasm-audio-decoders/ogg-vorbis": "^0.1.20"
|
|
@@ -57,22 +57,24 @@
|
|
|
57
57
|
"tsup": "^8.5.1",
|
|
58
58
|
"vitest": "^4.0.16",
|
|
59
59
|
"webgpu": "^0.3.8",
|
|
60
|
-
"@quake2ts/game": "0.0.
|
|
61
|
-
"@quake2ts/shared": "0.0.
|
|
62
|
-
"@quake2ts/test-utils": "^0.0.
|
|
60
|
+
"@quake2ts/game": "0.0.848",
|
|
61
|
+
"@quake2ts/shared": "0.0.848",
|
|
62
|
+
"@quake2ts/test-utils": "^0.0.848"
|
|
63
63
|
},
|
|
64
64
|
"scripts": {
|
|
65
65
|
"build": "pnpm run build:types && pnpm run build:bundles",
|
|
66
66
|
"build:types": "tsc -b",
|
|
67
67
|
"build:bundles": "tsup",
|
|
68
68
|
"test": "pnpm run test:unit",
|
|
69
|
-
"test:unit": "
|
|
70
|
-
"test:
|
|
71
|
-
"test:
|
|
72
|
-
"test:
|
|
73
|
-
"test:
|
|
74
|
-
"test:webgl
|
|
75
|
-
"test:webgl:
|
|
69
|
+
"test:unit": "pnpm run test:unit:node && pnpm run test:unit:jsdom",
|
|
70
|
+
"test:unit:node": "TEST_TYPE=unit vitest run --config vitest.node.ts --passWithNoTests",
|
|
71
|
+
"test:unit:jsdom": "TEST_TYPE=unit vitest run --config vitest.jsdom.ts --passWithNoTests",
|
|
72
|
+
"test:integration": "TEST_TYPE=integration vitest run --config vitest.integration.ts --passWithNoTests",
|
|
73
|
+
"test:webgpu": "cross-env TEST_TYPE=webgpu vitest run --config vitest.webgpu.ts --passWithNoTests",
|
|
74
|
+
"test:webgl": "cross-env TEST_TYPE=webgl vitest run --config vitest.webgl.ts --passWithNoTests",
|
|
75
|
+
"test:webgl:watch": "cross-env TEST_TYPE=webgl vitest watch --config vitest.webgl.ts",
|
|
76
|
+
"test:webgl:update": "cross-env UPDATE_VISUAL=1 TEST_TYPE=webgl vitest run --config vitest.webgl.ts",
|
|
77
|
+
"test:webgl:ui": "cross-env TEST_TYPE=webgl vitest --ui --config vitest.webgl.ts",
|
|
76
78
|
"test:visual": "vitest run tests/integration/visual",
|
|
77
79
|
"test:visual:update": "vitest run tests/integration/visual --update-snapshots",
|
|
78
80
|
"test:visual:watch": "vitest tests/integration/visual"
|