@plasius/gpu-lighting 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.
Files changed (20) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/README.md +8 -1
  3. package/package.json +8 -3
  4. /package/dist/techniques/{hdri → techniques/hdri}/brdf-lut.job.wgsl +0 -0
  5. /package/dist/techniques/{hdri → techniques/hdri}/irradiance-convolution.job.wgsl +0 -0
  6. /package/dist/techniques/{hdri → techniques/hdri}/prelude.wgsl +0 -0
  7. /package/dist/techniques/{hdri → techniques/hdri}/specular-prefilter.job.wgsl +0 -0
  8. /package/dist/techniques/{hybrid → techniques/hybrid}/direct-lighting.job.wgsl +0 -0
  9. /package/dist/techniques/{hybrid → techniques/hybrid}/final-gather.job.wgsl +0 -0
  10. /package/dist/techniques/{hybrid → techniques/hybrid}/prelude.wgsl +0 -0
  11. /package/dist/techniques/{hybrid → techniques/hybrid}/radiance-cache.job.wgsl +0 -0
  12. /package/dist/techniques/{hybrid → techniques/hybrid}/reflection-resolve.job.wgsl +0 -0
  13. /package/dist/techniques/{hybrid → techniques/hybrid}/screen-trace.job.wgsl +0 -0
  14. /package/dist/techniques/{pathtracer → techniques/pathtracer}/accumulate.job.wgsl +0 -0
  15. /package/dist/techniques/{pathtracer → techniques/pathtracer}/denoise.job.wgsl +0 -0
  16. /package/dist/techniques/{pathtracer → techniques/pathtracer}/pathtrace.job.wgsl +0 -0
  17. /package/dist/techniques/{pathtracer → techniques/pathtracer}/prelude.wgsl +0 -0
  18. /package/dist/techniques/{volumetrics → techniques/volumetrics}/froxel-integrate.job.wgsl +0 -0
  19. /package/dist/techniques/{volumetrics → techniques/volumetrics}/prelude.wgsl +0 -0
  20. /package/dist/techniques/{volumetrics → techniques/volumetrics}/volumetric-shadow.job.wgsl +0 -0
package/CHANGELOG.md CHANGED
@@ -8,6 +8,20 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ - **Added**
12
+ - (placeholder)
13
+
14
+ - **Changed**
15
+ - (placeholder)
16
+
17
+ - **Fixed**
18
+ - (placeholder)
19
+
20
+ - **Security**
21
+ - (placeholder)
22
+
23
+ ## [0.1.1] - 2026-02-28
24
+
11
25
  - **Added**
12
26
  - (placeholder)
13
27
 
@@ -44,3 +58,18 @@ The format is based on **[Keep a Changelog](https://keepachangelog.com/en/1.1.0/
44
58
 
45
59
 
46
60
  [0.1.0]: https://github.com/Plasius-LTD/gpu-lighting/releases/tag/v0.1.0
61
+
62
+ ## [0.1.0] - 2026-02-11
63
+
64
+ - **Added**
65
+ - Initial release.
66
+
67
+ - **Changed**
68
+ - (placeholder)
69
+
70
+ - **Fixed**
71
+ - (placeholder)
72
+
73
+ - **Security**
74
+ - (placeholder)
75
+ [0.1.1]: https://github.com/Plasius-LTD/gpu-lighting/releases/tag/v0.1.1
package/README.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # @plasius/gpu-lighting
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/@plasius/gpu-lighting)](https://www.npmjs.com/package/@plasius/gpu-lighting)
3
+ [![npm version](https://img.shields.io/npm/v/@plasius/gpu-lighting.svg)](https://www.npmjs.com/package/@plasius/gpu-lighting)
4
+ [![Build Status](https://img.shields.io/github/actions/workflow/status/Plasius-LTD/gpu-lighting/ci.yml?branch=main&label=build&style=flat)](https://github.com/Plasius-LTD/gpu-lighting/actions/workflows/ci.yml)
5
+ [![coverage](https://img.shields.io/codecov/c/github/Plasius-LTD/gpu-lighting)](https://codecov.io/gh/Plasius-LTD/gpu-lighting)
6
+ [![License](https://img.shields.io/github/license/Plasius-LTD/gpu-lighting)](./LICENSE)
7
+ [![Code of Conduct](https://img.shields.io/badge/code%20of%20conduct-yes-blue.svg)](./CODE_OF_CONDUCT.md)
8
+ [![Security Policy](https://img.shields.io/badge/security%20policy-yes-orange.svg)](./SECURITY.md)
9
+ [![Changelog](https://img.shields.io/badge/changelog-md-blue.svg)](./CHANGELOG.md)
10
+
4
11
  [![license](https://img.shields.io/github/license/Plasius-LTD/gpu-lighting)](./LICENSE)
5
12
 
6
13
  Advanced lighting WGSL modules and planning profiles for `@plasius/gpu-worker`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasius/gpu-lighting",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Advanced lighting WGSL modules and planning profiles for @plasius/gpu-worker.",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -29,7 +29,9 @@
29
29
  "test": "npm run test:unit",
30
30
  "test:unit": "node --test",
31
31
  "test:e2e": "npx playwright install chromium && playwright 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",
@@ -73,6 +75,9 @@
73
75
  }
74
76
  ],
75
77
  "dependencies": {
76
- "@plasius/gpu-worker": "^0.1.2"
78
+ "@plasius/gpu-worker": "^0.1.3"
79
+ },
80
+ "overrides": {
81
+ "minimatch": "^10.2.1"
77
82
  }
78
83
  }