@plasius/gpu-renderer 0.1.0 → 0.1.1
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 +43 -0
- package/README.md +8 -1
- package/package.json +9 -4
package/CHANGELOG.md
CHANGED
|
@@ -8,3 +8,46 @@ All notable changes to this project will be documented in this file.
|
|
|
8
8
|
- Added framework-agnostic WebGPU renderer lifecycle APIs.
|
|
9
9
|
- Added XR manager binding helper to integrate with `@plasius/gpu-xr`.
|
|
10
10
|
- Added unit tests, demo, and ADR documentation.
|
|
11
|
+
|
|
12
|
+
## [Unreleased]
|
|
13
|
+
|
|
14
|
+
- **Added**
|
|
15
|
+
- (placeholder)
|
|
16
|
+
|
|
17
|
+
- **Changed**
|
|
18
|
+
- (placeholder)
|
|
19
|
+
|
|
20
|
+
- **Fixed**
|
|
21
|
+
- (placeholder)
|
|
22
|
+
|
|
23
|
+
- **Security**
|
|
24
|
+
- (placeholder)
|
|
25
|
+
|
|
26
|
+
## [0.1.1] - 2026-02-28
|
|
27
|
+
|
|
28
|
+
- **Added**
|
|
29
|
+
- (placeholder)
|
|
30
|
+
|
|
31
|
+
- **Changed**
|
|
32
|
+
- (placeholder)
|
|
33
|
+
|
|
34
|
+
- **Fixed**
|
|
35
|
+
- (placeholder)
|
|
36
|
+
|
|
37
|
+
- **Security**
|
|
38
|
+
- (placeholder)
|
|
39
|
+
|
|
40
|
+
## [0.1.0] - 2026-02-11
|
|
41
|
+
|
|
42
|
+
- **Added**
|
|
43
|
+
- Initial release.
|
|
44
|
+
|
|
45
|
+
- **Changed**
|
|
46
|
+
- (placeholder)
|
|
47
|
+
|
|
48
|
+
- **Fixed**
|
|
49
|
+
- (placeholder)
|
|
50
|
+
|
|
51
|
+
- **Security**
|
|
52
|
+
- (placeholder)
|
|
53
|
+
[0.1.1]: https://github.com/Plasius-LTD/gpu-renderer/releases/tag/v0.1.1
|
package/README.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
# @plasius/gpu-renderer
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@plasius/gpu-renderer)
|
|
3
|
+
[](https://www.npmjs.com/package/@plasius/gpu-renderer)
|
|
4
|
+
[](https://github.com/Plasius-LTD/gpu-renderer/actions/workflows/ci.yml)
|
|
5
|
+
[](https://codecov.io/gh/Plasius-LTD/gpu-renderer)
|
|
6
|
+
[](./LICENSE)
|
|
7
|
+
[](./CODE_OF_CONDUCT.md)
|
|
8
|
+
[](./SECURITY.md)
|
|
9
|
+
[](./CHANGELOG.md)
|
|
10
|
+
|
|
4
11
|
[](./LICENSE)
|
|
5
12
|
|
|
6
13
|
Framework-agnostic WebGPU renderer runtime for Plasius projects.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasius/gpu-renderer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Framework-agnostic WebGPU renderer runtime for Plasius projects.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -29,7 +29,9 @@
|
|
|
29
29
|
"demo": "python3 -m http.server --directory ..",
|
|
30
30
|
"test": "npm run test:unit",
|
|
31
31
|
"test:unit": "node --test",
|
|
32
|
-
"test:coverage": "c8 --reporter=lcov --reporter=text node --test"
|
|
32
|
+
"test:coverage": "c8 --reporter=lcov --reporter=text node --test",
|
|
33
|
+
"pack:check": "node scripts/verify-public-package.cjs",
|
|
34
|
+
"prepublishOnly": "npm run build && npm run pack:check"
|
|
33
35
|
},
|
|
34
36
|
"keywords": [
|
|
35
37
|
"webgpu",
|
|
@@ -41,7 +43,7 @@
|
|
|
41
43
|
"author": "Plasius LTD <development@plasius.co.uk>",
|
|
42
44
|
"license": "Apache-2.0",
|
|
43
45
|
"dependencies": {
|
|
44
|
-
"@plasius/gpu-xr": "^0.1.
|
|
46
|
+
"@plasius/gpu-xr": "^0.1.1"
|
|
45
47
|
},
|
|
46
48
|
"devDependencies": {
|
|
47
49
|
"c8": "^10.1.3",
|
|
@@ -68,5 +70,8 @@
|
|
|
68
70
|
"type": "github",
|
|
69
71
|
"url": "https://github.com/sponsors/Plasius-LTD"
|
|
70
72
|
}
|
|
71
|
-
]
|
|
73
|
+
],
|
|
74
|
+
"overrides": {
|
|
75
|
+
"minimatch": "^10.2.1"
|
|
76
|
+
}
|
|
72
77
|
}
|