@thi.ng/grid-iterators 4.0.67 → 4.0.69

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/CHANGELOG.md +1 -1
  2. package/README.md +9 -3
  3. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-03-27T09:53:45Z
3
+ - **Last updated**: 2024-04-08T14:59:29Z
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.
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![Mastodon Follow](https://img.shields.io/mastodon/follow/109331703950160316?domain=https%3A%2F%2Fmastodon.thi.ng&style=social)](https://mastodon.thi.ng/@toxi)
8
8
 
9
9
  > [!NOTE]
10
- > This is one of 190 standalone projects, maintained as part
10
+ > This is one of 191 standalone projects, maintained as part
11
11
  > of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
12
12
  > and anti-framework.
13
13
  >
@@ -233,7 +233,13 @@ optional clipping:
233
233
  yarn add @thi.ng/grid-iterators
234
234
  ```
235
235
 
236
- ES module import:
236
+ ESM import:
237
+
238
+ ```ts
239
+ import * as gi from "@thi.ng/grid-iterators";
240
+ ```
241
+
242
+ Browser ESM import:
237
243
 
238
244
  ```html
239
245
  <script type="module" src="https://cdn.skypack.dev/@thi.ng/grid-iterators"></script>
@@ -244,7 +250,7 @@ ES module import:
244
250
  For Node.js REPL:
245
251
 
246
252
  ```js
247
- const gridIterators = await import("@thi.ng/grid-iterators");
253
+ const gi = await import("@thi.ng/grid-iterators");
248
254
  ```
249
255
 
250
256
  Package sizes (brotli'd, pre-treeshake): ESM: 2.58 KB
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/grid-iterators",
3
- "version": "4.0.67",
3
+ "version": "4.0.69",
4
4
  "description": "2D grid and shape iterators w/ multiple orderings",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -38,14 +38,14 @@
38
38
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
39
39
  },
40
40
  "dependencies": {
41
- "@thi.ng/api": "^8.9.31",
42
- "@thi.ng/arrays": "^2.9.0",
43
- "@thi.ng/binary": "^3.4.20",
44
- "@thi.ng/bitfield": "^2.3.36",
45
- "@thi.ng/errors": "^2.5.2",
46
- "@thi.ng/morton": "^3.1.81",
47
- "@thi.ng/random": "^3.7.1",
48
- "@thi.ng/transducers": "^8.9.17"
41
+ "@thi.ng/api": "^8.10.0",
42
+ "@thi.ng/arrays": "^2.9.2",
43
+ "@thi.ng/binary": "^3.4.21",
44
+ "@thi.ng/bitfield": "^2.3.37",
45
+ "@thi.ng/errors": "^2.5.3",
46
+ "@thi.ng/morton": "^3.1.82",
47
+ "@thi.ng/random": "^3.7.2",
48
+ "@thi.ng/transducers": "^9.0.0"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@microsoft/api-extractor": "^7.43.0",
@@ -167,5 +167,5 @@
167
167
  ],
168
168
  "year": 2019
169
169
  },
170
- "gitHead": "db5f5a5d1b223a8e6b4999d67836678038fd3560\n"
170
+ "gitHead": "85ac4bd4d6d89f8e3689e2863d5bea0cecdb371c\n"
171
171
  }