@thi.ng/colored-noise 1.0.65 → 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.
- package/CHANGELOG.md +7 -1
- package/README.md +9 -3
- package/package.json +11 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2024-
|
|
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
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
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
|
-
|
|
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
|
|
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.
|
|
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,17 +36,17 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/binary": "^3.4.
|
|
40
|
-
"@thi.ng/random": "^3.7.
|
|
39
|
+
"@thi.ng/binary": "^3.4.21",
|
|
40
|
+
"@thi.ng/random": "^3.7.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@microsoft/api-extractor": "^7.43.0",
|
|
44
|
-
"@thi.ng/api": "^8.
|
|
45
|
-
"@thi.ng/dsp": "^4.7.
|
|
46
|
-
"@thi.ng/dsp-io-wav": "^2.1.
|
|
47
|
-
"@thi.ng/text-canvas": "^3.0.
|
|
48
|
-
"@thi.ng/transducers": "^
|
|
49
|
-
"@thi.ng/vectors": "^7.10.
|
|
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
50
|
"esbuild": "^0.20.2",
|
|
51
51
|
"rimraf": "^5.0.5",
|
|
52
52
|
"typedoc": "^0.25.12",
|
|
@@ -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": "
|
|
116
|
+
"gitHead": "85ac4bd4d6d89f8e3689e2863d5bea0cecdb371c\n"
|
|
116
117
|
}
|