@thi.ng/colored-noise 1.0.64 → 1.0.66

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 +7 -1
  2. package/README.md +9 -3
  3. package/package.json +14 -13
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-03-13T14:04:31Z
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.
@@ -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
+ ### [1.0.66](https://github.com/thi-ng/umbrella/tree/@thi.ng/colored-noise@1.0.66) (2024-04-08)
13
+
14
+ #### ♻️ Refactoring
15
+
16
+ - update reducer handling ([5b445a7](https://github.com/thi-ng/umbrella/commit/5b445a7))
17
+
12
18
  ### [1.0.56](https://github.com/thi-ng/umbrella/tree/@thi.ng/colored-noise@1.0.56) (2024-02-22)
13
19
 
14
20
  #### ♻️ Refactoring
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
  >
@@ -363,7 +363,13 @@ white
363
363
  yarn add @thi.ng/colored-noise
364
364
  ```
365
365
 
366
- ES module import:
366
+ ESM import:
367
+
368
+ ```ts
369
+ import * as cnoise from "@thi.ng/colored-noise";
370
+ ```
371
+
372
+ Browser ESM import:
367
373
 
368
374
  ```html
369
375
  <script type="module" src="https://cdn.skypack.dev/@thi.ng/colored-noise"></script>
@@ -374,7 +380,7 @@ ES module import:
374
380
  For Node.js REPL:
375
381
 
376
382
  ```js
377
- const coloredNoise = await import("@thi.ng/colored-noise");
383
+ const cnoise = await import("@thi.ng/colored-noise");
378
384
  ```
379
385
 
380
386
  Package sizes (brotli'd, pre-treeshake): ESM: 494 bytes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/colored-noise",
3
- "version": "1.0.64",
3
+ "version": "1.0.66",
4
4
  "description": "Customizable O(1) ES6 generators for colored noise",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -36,21 +36,21 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/binary": "^3.4.19",
40
- "@thi.ng/random": "^3.7.0"
39
+ "@thi.ng/binary": "^3.4.21",
40
+ "@thi.ng/random": "^3.7.2"
41
41
  },
42
42
  "devDependencies": {
43
- "@microsoft/api-extractor": "^7.42.3",
44
- "@thi.ng/api": "^8.9.30",
45
- "@thi.ng/dsp": "^4.7.24",
46
- "@thi.ng/dsp-io-wav": "^2.1.110",
47
- "@thi.ng/text-canvas": "^3.0.13",
48
- "@thi.ng/transducers": "^8.9.15",
49
- "@thi.ng/vectors": "^7.10.21",
50
- "esbuild": "^0.20.1",
43
+ "@microsoft/api-extractor": "^7.43.0",
44
+ "@thi.ng/api": "^8.10.0",
45
+ "@thi.ng/dsp": "^4.7.28",
46
+ "@thi.ng/dsp-io-wav": "^2.1.115",
47
+ "@thi.ng/text-canvas": "^3.0.18",
48
+ "@thi.ng/transducers": "^9.0.0",
49
+ "@thi.ng/vectors": "^7.10.26",
50
+ "esbuild": "^0.20.2",
51
51
  "rimraf": "^5.0.5",
52
52
  "typedoc": "^0.25.12",
53
- "typescript": "^5.4.2"
53
+ "typescript": "^5.4.3"
54
54
  },
55
55
  "keywords": [
56
56
  "1d",
@@ -105,6 +105,7 @@
105
105
  }
106
106
  },
107
107
  "thi.ng": {
108
+ "alias": "cnoise",
108
109
  "related": [
109
110
  "dsp",
110
111
  "lowdisc",
@@ -112,5 +113,5 @@
112
113
  ],
113
114
  "year": 2015
114
115
  },
115
- "gitHead": "da965520b2f3f8c259a791e8e8864308be2ba0be\n"
116
+ "gitHead": "85ac4bd4d6d89f8e3689e2863d5bea0cecdb371c\n"
116
117
  }