@plasius/gpu-physics 0.1.1 → 0.1.2
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/CHANGELOG.md +15 -0
- package/README.md +10 -0
- package/package.json +10 -1
package/CHANGELOG.md
CHANGED
|
@@ -20,6 +20,20 @@
|
|
|
20
20
|
- **Security**
|
|
21
21
|
- (placeholder)
|
|
22
22
|
|
|
23
|
+
## [0.1.2] - 2026-03-01
|
|
24
|
+
|
|
25
|
+
- **Added**
|
|
26
|
+
- `lint`, `typecheck`, and security audit scripts for local and CI enforcement.
|
|
27
|
+
|
|
28
|
+
- **Changed**
|
|
29
|
+
- CI now fails early on lint/typecheck/runtime dependency audit before build/test.
|
|
30
|
+
|
|
31
|
+
- **Fixed**
|
|
32
|
+
- Pack-check regex cleanup to remove an unnecessary path escape.
|
|
33
|
+
|
|
34
|
+
- **Security**
|
|
35
|
+
- Runtime dependency vulnerability checks are now enforced in CI.
|
|
36
|
+
|
|
23
37
|
## [0.1.1] - 2026-02-28
|
|
24
38
|
|
|
25
39
|
- **Added**
|
|
@@ -49,3 +63,4 @@
|
|
|
49
63
|
- **Security**
|
|
50
64
|
- (placeholder)
|
|
51
65
|
[0.1.1]: https://github.com/Plasius-LTD/gpu-physics/releases/tag/v0.1.1
|
|
66
|
+
[0.1.2]: https://github.com/Plasius-LTD/gpu-physics/releases/tag/v0.1.2
|
package/README.md
CHANGED
|
@@ -40,6 +40,16 @@ import { PhysicsRoot, StaticRigidBody } from "@plasius/gpu-physics";
|
|
|
40
40
|
- `DynamicRigidBody`
|
|
41
41
|
- `KinematicRigidBody`
|
|
42
42
|
|
|
43
|
+
## Development Checks
|
|
44
|
+
|
|
45
|
+
```sh
|
|
46
|
+
npm run lint
|
|
47
|
+
npm run typecheck
|
|
48
|
+
npm run test:coverage
|
|
49
|
+
npm run build
|
|
50
|
+
npm run pack:check
|
|
51
|
+
```
|
|
52
|
+
|
|
43
53
|
## License
|
|
44
54
|
|
|
45
55
|
Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasius/gpu-physics",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Physics integration bridge package for Plasius GPU renderer migration.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -27,6 +27,12 @@
|
|
|
27
27
|
"scripts": {
|
|
28
28
|
"build": "tsup",
|
|
29
29
|
"demo": "python3 -m http.server --directory ..",
|
|
30
|
+
"typecheck": "node --check src/index.js",
|
|
31
|
+
"audit:eslint": "eslint . --max-warnings=0",
|
|
32
|
+
"audit:deps": "npm ls --all --omit=optional --omit=peer > /dev/null 2>&1 || true",
|
|
33
|
+
"audit:npm": "npm audit --audit-level=high --omit=dev",
|
|
34
|
+
"audit:test": "npm run test:coverage",
|
|
35
|
+
"lint": "eslint . --max-warnings=0",
|
|
30
36
|
"test": "npm run test:unit",
|
|
31
37
|
"test:unit": "node --test",
|
|
32
38
|
"test:coverage": "c8 --reporter=lcov --reporter=text node --test",
|
|
@@ -46,7 +52,10 @@
|
|
|
46
52
|
"react": "^19.1.0"
|
|
47
53
|
},
|
|
48
54
|
"devDependencies": {
|
|
55
|
+
"@eslint/js": "^9.39.1",
|
|
49
56
|
"c8": "^10.1.3",
|
|
57
|
+
"eslint": "^9.39.1",
|
|
58
|
+
"globals": "^17.3.0",
|
|
50
59
|
"react": "^19.1.0",
|
|
51
60
|
"tsup": "^8.5.0",
|
|
52
61
|
"typescript": "^5.9.3"
|