@epigraph/epigraph-std-lib 2.5.2-alpha → 3.0.0

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.
@@ -6117,7 +6117,7 @@ function Yw() {
6117
6117
  const s = new Uint32Array(2048), o = new Uint32Array(64), a = new Uint32Array(64);
6118
6118
  for (let l = 1; l < 1024; ++l) {
6119
6119
  let c = l << 13, u = 0;
6120
- for (; !(c & 8388608); )
6120
+ for (; (c & 8388608) === 0; )
6121
6121
  c <<= 1, u -= 8388608;
6122
6122
  c &= -8388609, u += 947912704, s[l] = c | u;
6123
6123
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epigraph/epigraph-std-lib",
3
- "version": "2.5.2-alpha",
3
+ "version": "3.0.0",
4
4
  "type": "module",
5
5
  "main": "dist/epigraph-std-lib.js",
6
6
  "types": "dist/epigraph-std-lib.d.ts",
@@ -17,10 +17,10 @@
17
17
  "dependencies": {
18
18
  "@epigraph/epigraph-analytics": "^1.0.0",
19
19
  "@google/model-viewer": "^4.0.0",
20
- "@types/three": "^0.169.0",
21
20
  "lit": "^3.2.1",
22
21
  "qr-creator": "^1.0.0",
23
- "three": "^0.169.0"
22
+ "three": "^0.169.0",
23
+ "@types/three": "^0.169.0"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "@types/node": "^22.13.0"