@logue/reverb 1.3.4 → 1.3.5
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/dist/Reverb.es.js +4 -3
- package/dist/Reverb.iife.js +4 -3
- package/dist/Reverb.umd.js +4 -3
- package/package.json +12 -12
package/dist/Reverb.es.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* @author Logue <logue@hotmail.co.jp>
|
|
6
6
|
* @copyright 2019-2023 By Masashi Yoshikawa All rights reserved.
|
|
7
7
|
* @license MIT
|
|
8
|
-
* @version 1.3.
|
|
8
|
+
* @version 1.3.5
|
|
9
9
|
* @see {@link https://github.com/logue/Reverb.js}
|
|
10
10
|
*/
|
|
11
11
|
|
|
@@ -78,8 +78,8 @@ const defaults = {
|
|
|
78
78
|
};
|
|
79
79
|
|
|
80
80
|
const Meta = {
|
|
81
|
-
version: "1.3.
|
|
82
|
-
date: "2023-11-
|
|
81
|
+
version: "1.3.5",
|
|
82
|
+
date: "2023-11-20T03:01:00.334Z"
|
|
83
83
|
};
|
|
84
84
|
|
|
85
85
|
const Noise = {
|
|
@@ -248,6 +248,7 @@ const ensureTransducer = (x) => implementsFunction(x, "xform") ? x.xform() : x;
|
|
|
248
248
|
const isIterable = (x) => x != null && typeof x[Symbol.iterator] === "function";
|
|
249
249
|
|
|
250
250
|
class Reduced {
|
|
251
|
+
value;
|
|
251
252
|
constructor(val) {
|
|
252
253
|
this.value = val;
|
|
253
254
|
}
|
package/dist/Reverb.iife.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* @author Logue <logue@hotmail.co.jp>
|
|
6
6
|
* @copyright 2019-2023 By Masashi Yoshikawa All rights reserved.
|
|
7
7
|
* @license MIT
|
|
8
|
-
* @version 1.3.
|
|
8
|
+
* @version 1.3.5
|
|
9
9
|
* @see {@link https://github.com/logue/Reverb.js}
|
|
10
10
|
*/
|
|
11
11
|
|
|
@@ -81,8 +81,8 @@ var Reverb = (function () {
|
|
|
81
81
|
};
|
|
82
82
|
|
|
83
83
|
const Meta = {
|
|
84
|
-
version: "1.3.
|
|
85
|
-
date: "2023-11-
|
|
84
|
+
version: "1.3.5",
|
|
85
|
+
date: "2023-11-20T03:01:00.334Z"
|
|
86
86
|
};
|
|
87
87
|
|
|
88
88
|
const Noise = {
|
|
@@ -251,6 +251,7 @@ var Reverb = (function () {
|
|
|
251
251
|
const isIterable = (x) => x != null && typeof x[Symbol.iterator] === "function";
|
|
252
252
|
|
|
253
253
|
class Reduced {
|
|
254
|
+
value;
|
|
254
255
|
constructor(val) {
|
|
255
256
|
this.value = val;
|
|
256
257
|
}
|
package/dist/Reverb.umd.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* @author Logue <logue@hotmail.co.jp>
|
|
6
6
|
* @copyright 2019-2023 By Masashi Yoshikawa All rights reserved.
|
|
7
7
|
* @license MIT
|
|
8
|
-
* @version 1.3.
|
|
8
|
+
* @version 1.3.5
|
|
9
9
|
* @see {@link https://github.com/logue/Reverb.js}
|
|
10
10
|
*/
|
|
11
11
|
|
|
@@ -84,8 +84,8 @@
|
|
|
84
84
|
};
|
|
85
85
|
|
|
86
86
|
const Meta = {
|
|
87
|
-
version: "1.3.
|
|
88
|
-
date: "2023-11-
|
|
87
|
+
version: "1.3.5",
|
|
88
|
+
date: "2023-11-20T03:01:00.334Z"
|
|
89
89
|
};
|
|
90
90
|
|
|
91
91
|
const Noise = {
|
|
@@ -254,6 +254,7 @@
|
|
|
254
254
|
const isIterable = (x) => x != null && typeof x[Symbol.iterator] === "function";
|
|
255
255
|
|
|
256
256
|
class Reduced {
|
|
257
|
+
value;
|
|
257
258
|
constructor(val) {
|
|
258
259
|
this.value = val;
|
|
259
260
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@logue/reverb",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.5",
|
|
5
5
|
"description": "JavaScript Reverb effect class",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"webaudio",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"node": ">=18.12.5",
|
|
44
44
|
"yarn": ">=1.22.19"
|
|
45
45
|
},
|
|
46
|
-
"packageManager": "yarn@4.0.
|
|
46
|
+
"packageManager": "yarn@4.0.2",
|
|
47
47
|
"sideEffects": false,
|
|
48
48
|
"scripts": {
|
|
49
49
|
"dev": "vite",
|
|
@@ -59,33 +59,33 @@
|
|
|
59
59
|
"prepare": "husky install"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@thi.ng/colored-noise": "^1.0.
|
|
63
|
-
"@thi.ng/transducers": "^8.8.
|
|
62
|
+
"@thi.ng/colored-noise": "^1.0.36",
|
|
63
|
+
"@thi.ng/transducers": "^8.8.11"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@tsconfig/node-lts": "^18.12.5",
|
|
67
|
-
"@types/node": "^20.
|
|
68
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
67
|
+
"@types/node": "^20.9.2",
|
|
68
|
+
"@typescript-eslint/eslint-plugin": "^6.11.0",
|
|
69
69
|
"bootstrap": "^5.3.2",
|
|
70
|
-
"eslint": "^8.
|
|
70
|
+
"eslint": "^8.54.0",
|
|
71
71
|
"eslint-config-prettier": "^9.0.0",
|
|
72
|
-
"eslint-config-standard-with-typescript": "^
|
|
72
|
+
"eslint-config-standard-with-typescript": "^40.0.0",
|
|
73
73
|
"eslint-import-resolver-alias": "^1.1.2",
|
|
74
74
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
75
75
|
"eslint-plugin-html": "^7.1.0",
|
|
76
76
|
"eslint-plugin-import": "^2.29.0",
|
|
77
|
-
"eslint-plugin-n": "^16.
|
|
77
|
+
"eslint-plugin-n": "^16.3.1",
|
|
78
78
|
"eslint-plugin-promise": "^6.1.1",
|
|
79
79
|
"eslint-plugin-tsdoc": "^0.2.17",
|
|
80
80
|
"eslint-plugin-yaml": "^0.5.0",
|
|
81
81
|
"husky": "^8.0.3",
|
|
82
|
-
"lint-staged": "^15.0
|
|
82
|
+
"lint-staged": "^15.1.0",
|
|
83
83
|
"npm-run-all": "^4.1.5",
|
|
84
|
-
"prettier": "^3.0
|
|
84
|
+
"prettier": "^3.1.0",
|
|
85
85
|
"rimraf": "^5.0.5",
|
|
86
86
|
"rollup-plugin-visualizer": "^5.9.2",
|
|
87
87
|
"typescript": "latest",
|
|
88
|
-
"vite": "^
|
|
88
|
+
"vite": "^5.0.0",
|
|
89
89
|
"vite-plugin-banner": "^0.7.1",
|
|
90
90
|
"vite-plugin-checker": "^0.6.2",
|
|
91
91
|
"vite-plugin-dts": "^3.6.3"
|