@plasius/gpu-particles 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 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-particles/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-particles/releases/tag/v0.1.1
package/README.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # @plasius/gpu-particles
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/@plasius/gpu-particles)](https://www.npmjs.com/package/@plasius/gpu-particles)
3
+ [![npm version](https://img.shields.io/npm/v/@plasius/gpu-particles.svg)](https://www.npmjs.com/package/@plasius/gpu-particles)
4
+ [![Build Status](https://img.shields.io/github/actions/workflow/status/Plasius-LTD/gpu-particles/ci.yml?branch=main&label=build&style=flat)](https://github.com/Plasius-LTD/gpu-particles/actions/workflows/ci.yml)
5
+ [![coverage](https://img.shields.io/codecov/c/github/Plasius-LTD/gpu-particles)](https://codecov.io/gh/Plasius-LTD/gpu-particles)
6
+ [![License](https://img.shields.io/github/license/Plasius-LTD/gpu-particles)](./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-particles)](./LICENSE)
5
12
 
6
13
  Particle job WGSL modules designed to be assembled with `@plasius/gpu-worker`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasius/gpu-particles",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Particle effect WGSL modules and helpers 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",
@@ -69,6 +71,9 @@
69
71
  }
70
72
  ],
71
73
  "dependencies": {
72
- "@plasius/gpu-worker": "^0.1.2"
74
+ "@plasius/gpu-worker": "^0.1.3"
75
+ },
76
+ "overrides": {
77
+ "minimatch": "^10.2.1"
73
78
  }
74
79
  }