limiter-audio-worklet-processor 1.1.63 → 1.1.64

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 (2) hide show
  1. package/build/es5/bundle.js +3 -5
  2. package/package.json +11 -11
@@ -15,7 +15,7 @@
15
15
  throw new Error('The given buffer is too small.');
16
16
  }
17
17
  }
18
- _createClass(ConstantMemoryDeque, [{
18
+ return _createClass(ConstantMemoryDeque, [{
19
19
  key: "size",
20
20
  get: function get() {
21
21
  return this._isEmpty ? 0 : this._lastIndex < this._firstIndex ? this._buffer.length - this._firstIndex + this._lastIndex + 1 : this._lastIndex - this._firstIndex + 1;
@@ -85,7 +85,6 @@
85
85
  }
86
86
  }
87
87
  }]);
88
- return ConstantMemoryDeque;
89
88
  }();
90
89
 
91
90
  var readFromRingBuffer = function readFromRingBuffer(target, source, offset) {
@@ -154,7 +153,6 @@
154
153
  }
155
154
  };
156
155
  var LimiterAudioWorkletProcessor = /*#__PURE__*/function (_AudioWorkletProcesso) {
157
- _inherits(LimiterAudioWorkletProcessor, _AudioWorkletProcesso);
158
156
  function LimiterAudioWorkletProcessor(_ref) {
159
157
  var _this;
160
158
  var channelCount = _ref.channelCount,
@@ -205,7 +203,8 @@
205
203
  _this._writeOffset = 0;
206
204
  return _this;
207
205
  }
208
- _createClass(LimiterAudioWorkletProcessor, [{
206
+ _inherits(LimiterAudioWorkletProcessor, _AudioWorkletProcesso);
207
+ return _createClass(LimiterAudioWorkletProcessor, [{
209
208
  key: "process",
210
209
  value: function process(_ref2, _ref3) {
211
210
  var _ref4 = _slicedToArray(_ref2, 1),
@@ -231,7 +230,6 @@
231
230
  return true;
232
231
  }
233
232
  }]);
234
- return LimiterAudioWorkletProcessor;
235
233
  }( /*#__PURE__*/_wrapNativeSuper(AudioWorkletProcessor));
236
234
  LimiterAudioWorkletProcessor.parameterDescriptors = [];
237
235
 
package/package.json CHANGED
@@ -9,15 +9,15 @@
9
9
  }
10
10
  },
11
11
  "dependencies": {
12
- "@babel/runtime": "^7.24.0",
12
+ "@babel/runtime": "^7.24.1",
13
13
  "tslib": "^2.6.2"
14
14
  },
15
15
  "description": "The AudioWorkletProcessor which is used by the limiter-audio-worklet package.",
16
16
  "devDependencies": {
17
- "@babel/core": "^7.24.0",
18
- "@babel/plugin-external-helpers": "^7.23.3",
19
- "@babel/plugin-transform-runtime": "^7.24.0",
20
- "@babel/preset-env": "^7.24.0",
17
+ "@babel/core": "^7.24.3",
18
+ "@babel/plugin-external-helpers": "^7.24.1",
19
+ "@babel/plugin-transform-runtime": "^7.24.3",
20
+ "@babel/preset-env": "^7.24.3",
21
21
  "@commitlint/cli": "^18.6.1",
22
22
  "@commitlint/config-angular": "^18.6.1",
23
23
  "@rollup/plugin-babel": "^6.0.4",
@@ -25,7 +25,7 @@
25
25
  "commitizen": "^4.3.0",
26
26
  "cz-conventional-changelog": "^3.3.0",
27
27
  "eslint": "^8.57.0",
28
- "eslint-config-holy-grail": "^58.0.8",
28
+ "eslint-config-holy-grail": "^58.0.10",
29
29
  "grunt": "^1.6.1",
30
30
  "grunt-cli": "^1.4.3",
31
31
  "grunt-sh": "^0.2.1",
@@ -46,16 +46,16 @@
46
46
  "mocha": "^10.3.0",
47
47
  "prettier": "^3.2.5",
48
48
  "rimraf": "^5.0.5",
49
- "rollup": "^4.12.0",
49
+ "rollup": "^4.13.0",
50
50
  "sinon": "^17.0.1",
51
51
  "sinon-chai": "^3.7.0",
52
- "standardized-audio-context": "^25.3.65",
52
+ "standardized-audio-context": "^25.3.67",
53
53
  "ts-loader": "^9.5.1",
54
54
  "tsconfig-holy-grail": "^15.0.0",
55
55
  "tslint": "^6.1.3",
56
56
  "tslint-config-holy-grail": "^56.0.0",
57
- "typescript": "^5.3.3",
58
- "webpack": "^5.90.3"
57
+ "typescript": "^5.4.3",
58
+ "webpack": "^5.91.0"
59
59
  },
60
60
  "files": [
61
61
  "build/es2019/",
@@ -82,5 +82,5 @@
82
82
  "test": "grunt lint && grunt test"
83
83
  },
84
84
  "types": "build/es2019/module.d.ts",
85
- "version": "1.1.63"
85
+ "version": "1.1.64"
86
86
  }