random_wgsl 0.6.33 → 0.6.36

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.
@@ -1,13 +1,14 @@
1
1
  export interface WeslBundle {
2
- /** name of the package, e.g. random_wgsl */
2
+ /** npm package name sanitized to be a valid WESL identifier
3
+ * (@ removed, / ==> __, - ==> _) */
3
4
  name: string;
4
5
 
5
- /** wesl edition of the code e.g. unstable_2025_1 */
6
+ /** WESL edition of the code e.g. unstable_2025_1 */
6
7
  edition: string;
7
8
 
8
- /** map of wesl/wgsl modules:
9
+ /** map of WESL/WGSL modules:
9
10
  * keys are file paths, relative to package root (e.g. "./lib.wgsl")
10
- * values are wgsl/wesl code strings
11
+ * values are WESL/WGSL code strings
11
12
  */
12
13
  modules: Record<string, string>;
13
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "random_wgsl",
3
- "version": "0.6.33",
3
+ "version": "0.6.36",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src",