@thi.ng/grid-iterators 4.0.70 → 4.0.72

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
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-04-11T12:32:44Z
3
+ - **Last updated**: 2024-04-23T07:02:18Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
9
9
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
10
10
  and/or version bumps of transitive dependencies.
11
11
 
12
+ ### [4.0.71](https://github.com/thi-ng/umbrella/tree/@thi.ng/grid-iterators@4.0.71) (2024-04-20)
13
+
14
+ #### ♻️ Refactoring
15
+
16
+ - update type usage ([a3afff7](https://github.com/thi-ng/umbrella/commit/a3afff7))
17
+
12
18
  ### [4.0.54](https://github.com/thi-ng/umbrella/tree/@thi.ng/grid-iterators@4.0.54) (2024-02-22)
13
19
 
14
20
  #### ♻️ Refactoring
package/README.md CHANGED
@@ -242,10 +242,10 @@ import * as gi from "@thi.ng/grid-iterators";
242
242
  Browser ESM import:
243
243
 
244
244
  ```html
245
- <script type="module" src="https://cdn.skypack.dev/@thi.ng/grid-iterators"></script>
245
+ <script type="module" src="https://esm.run/@thi.ng/grid-iterators"></script>
246
246
  ```
247
247
 
248
- [Skypack documentation](https://docs.skypack.dev/)
248
+ [JSDelivr documentation](https://www.jsdelivr.com/)
249
249
 
250
250
  For Node.js REPL:
251
251
 
package/clipping.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { FnU7, FnU8, Tuple } from "@thi.ng/api";
1
+ import type { FnU7, FnU8, Maybe, Tuple } from "@thi.ng/api";
2
2
  /**
3
3
  * Filters points from `src` iterable to remove any falling outside the rect
4
4
  * defined by `left,top`..`right,bottom`.
@@ -39,5 +39,5 @@ export declare const intersectRectCircle: FnU7<number, boolean>;
39
39
  *
40
40
  * @internal
41
41
  */
42
- export declare const liangBarsky: FnU8<number, Tuple<number, 4> | undefined>;
42
+ export declare const liangBarsky: FnU8<number, Maybe<Tuple<number, 4>>>;
43
43
  //# sourceMappingURL=clipping.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/grid-iterators",
3
- "version": "4.0.70",
3
+ "version": "4.0.72",
4
4
  "description": "2D grid and shape iterators w/ multiple orderings",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -28,7 +28,7 @@
28
28
  "build:assets": "node tools/build-assets",
29
29
  "build:decl": "tsc --declaration --emitDeclarationOnly",
30
30
  "build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
31
- "clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc internal",
31
+ "clean": "bun ../../tools/src/clean-package.ts",
32
32
  "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
33
33
  "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
34
34
  "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
@@ -38,19 +38,18 @@
38
38
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
39
39
  },
40
40
  "dependencies": {
41
- "@thi.ng/api": "^8.10.1",
42
- "@thi.ng/arrays": "^2.9.3",
43
- "@thi.ng/binary": "^3.4.22",
44
- "@thi.ng/bitfield": "^2.3.38",
45
- "@thi.ng/errors": "^2.5.4",
46
- "@thi.ng/morton": "^3.1.83",
47
- "@thi.ng/random": "^3.7.3",
48
- "@thi.ng/transducers": "^9.0.1"
41
+ "@thi.ng/api": "^8.11.1",
42
+ "@thi.ng/arrays": "^2.9.5",
43
+ "@thi.ng/binary": "^3.4.24",
44
+ "@thi.ng/bitfield": "^2.3.40",
45
+ "@thi.ng/errors": "^2.5.6",
46
+ "@thi.ng/morton": "^3.1.85",
47
+ "@thi.ng/random": "^3.7.5",
48
+ "@thi.ng/transducers": "^9.0.3"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@microsoft/api-extractor": "^7.43.0",
52
52
  "esbuild": "^0.20.2",
53
- "rimraf": "^5.0.5",
54
53
  "typedoc": "^0.25.12",
55
54
  "typescript": "^5.4.3"
56
55
  },
@@ -167,5 +166,5 @@
167
166
  ],
168
167
  "year": 2019
169
168
  },
170
- "gitHead": "18a0c063a7b33d790e5bc2486c106f45f663ac28\n"
169
+ "gitHead": "5dd66c18a3862a3af69a5b2f49563f7cbdd960c2\n"
171
170
  }