@audio/effect-flanger 1.1.0 → 1.1.1

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.
@@ -1,4 +1,4 @@
1
- // audio-module manifest — wraps the flanger atom; state rides per-channel params objects.
1
+ // atom manifest — wraps the flanger atom; state rides per-channel params objects.
2
2
  // `delay` sizes the buffer at construction (flags: restart); rate/depth/feedback are live.
3
3
 
4
4
  import flangerFn from './flanger.js'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@audio/effect-flanger",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Flanger — modulated short delay with feedback",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -8,11 +8,11 @@
8
8
  "exports": {
9
9
  ".": "./flanger.js",
10
10
  "./package.json": "./package.json",
11
- "./audio-module": "./audio-module.js"
11
+ "./atom": "./atom.js"
12
12
  },
13
13
  "files": [
14
14
  "flanger.js",
15
- "audio-module.js"
15
+ "atom.js"
16
16
  ],
17
17
  "keywords": [
18
18
  "audio",
@@ -37,5 +37,5 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "audio-module": "./audio-module.js"
40
+ "atom": "./atom.js"
41
41
  }