@thi.ng/shader-ast-js 1.2.51 → 1.2.53

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 (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +12 -12
  3. package/pool.js +2 -0
package/README.md CHANGED
@@ -88,7 +88,7 @@ For Node.js REPL:
88
88
  const js = await import("@thi.ng/shader-ast-js");
89
89
  ```
90
90
 
91
- Package sizes (brotli'd, pre-treeshake): ESM: 6.72 KB
91
+ Package sizes (brotli'd, pre-treeshake): ESM: 6.70 KB
92
92
 
93
93
  ## Dependencies
94
94
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/shader-ast-js",
3
- "version": "1.2.51",
3
+ "version": "1.2.53",
4
4
  "description": "Customizable JS codegen, compiler & runtime for @thi.ng/shader-ast",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -40,18 +40,18 @@
40
40
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@thi.ng/api": "^8.12.18",
44
- "@thi.ng/checks": "^3.8.8",
45
- "@thi.ng/errors": "^2.6.7",
46
- "@thi.ng/math": "^5.15.7",
47
- "@thi.ng/matrices": "^3.0.41",
48
- "@thi.ng/pixel": "^7.5.27",
49
- "@thi.ng/shader-ast": "^1.1.45",
50
- "@thi.ng/vectors": "^8.6.26"
43
+ "@thi.ng/api": "^8.12.19",
44
+ "@thi.ng/checks": "^3.8.9",
45
+ "@thi.ng/errors": "^2.6.8",
46
+ "@thi.ng/math": "^5.15.8",
47
+ "@thi.ng/matrices": "^3.0.43",
48
+ "@thi.ng/pixel": "^7.5.28",
49
+ "@thi.ng/shader-ast": "^1.1.46",
50
+ "@thi.ng/vectors": "^8.6.28"
51
51
  },
52
52
  "devDependencies": {
53
- "esbuild": "^0.27.2",
54
- "typedoc": "^0.28.16",
53
+ "esbuild": "^0.28.0",
54
+ "typedoc": "^0.28.18",
55
55
  "typescript": "^5.9.3"
56
56
  },
57
57
  "keywords": [
@@ -166,5 +166,5 @@
166
166
  ],
167
167
  "year": 2019
168
168
  },
169
- "gitHead": "8ddf86ea0a1e658ddbf19cc645b29d0c176e29c4\n"
169
+ "gitHead": "a780d4a5f6f5fc595c9d28527686f63534927d32"
170
170
  }
package/pool.js CHANGED
@@ -38,6 +38,8 @@ class Pool {
38
38
  this.from = from;
39
39
  this.uniform = uniform;
40
40
  }
41
+ size;
42
+ cap;
41
43
  mem;
42
44
  items;
43
45
  index = 0;