array-buffer-cache-worker 6.0.60 → 6.0.62
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/LICENSE +1 -1
- package/build/es5/bundle.js +2 -7
- package/package.json +20 -20
package/LICENSE
CHANGED
package/build/es5/bundle.js
CHANGED
@@ -4,17 +4,12 @@
|
|
4
4
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.workerFactory, global._classCallCheck, global._createClass));
|
5
5
|
})(this, (function (workerFactory, _classCallCheck, _createClass) { 'use strict';
|
6
6
|
|
7
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
8
|
-
|
9
|
-
var _classCallCheck__default = /*#__PURE__*/_interopDefaultLegacy(_classCallCheck);
|
10
|
-
var _createClass__default = /*#__PURE__*/_interopDefaultLegacy(_createClass);
|
11
|
-
|
12
7
|
var ArrayBufferStore = /*#__PURE__*/function () {
|
13
8
|
function ArrayBufferStore() {
|
14
|
-
|
9
|
+
_classCallCheck(this, ArrayBufferStore);
|
15
10
|
this._store = new Map();
|
16
11
|
}
|
17
|
-
|
12
|
+
_createClass(ArrayBufferStore, [{
|
18
13
|
key: "clone",
|
19
14
|
value: function clone(id) {
|
20
15
|
var arrayBuffer = this._store.get(id);
|
package/package.json
CHANGED
@@ -9,28 +9,28 @@
|
|
9
9
|
}
|
10
10
|
},
|
11
11
|
"dependencies": {
|
12
|
-
"@babel/runtime": "^7.20.
|
12
|
+
"@babel/runtime": "^7.20.7",
|
13
13
|
"tslib": "^2.4.1",
|
14
|
-
"worker-factory": "^6.0.
|
14
|
+
"worker-factory": "^6.0.74"
|
15
15
|
},
|
16
16
|
"description": "The worker which is used by the array-buffer-cache package.",
|
17
17
|
"devDependencies": {
|
18
|
-
"@babel/core": "^7.20.
|
18
|
+
"@babel/core": "^7.20.12",
|
19
19
|
"@babel/plugin-external-helpers": "^7.18.6",
|
20
20
|
"@babel/plugin-transform-runtime": "^7.19.6",
|
21
21
|
"@babel/preset-env": "^7.20.2",
|
22
|
-
"@commitlint/cli": "^17.
|
23
|
-
"@commitlint/config-angular": "^17.
|
24
|
-
"@rollup/plugin-babel": "^
|
22
|
+
"@commitlint/cli": "^17.4.2",
|
23
|
+
"@commitlint/config-angular": "^17.4.2",
|
24
|
+
"@rollup/plugin-babel": "^6.0.3",
|
25
25
|
"chai": "^4.3.7",
|
26
|
-
"commitizen": "^4.2.
|
26
|
+
"commitizen": "^4.2.6",
|
27
27
|
"cz-conventional-changelog": "^3.3.0",
|
28
|
-
"eslint": "^8.
|
29
|
-
"eslint-config-holy-grail": "^
|
28
|
+
"eslint": "^8.32.0",
|
29
|
+
"eslint-config-holy-grail": "^55.0.2",
|
30
30
|
"grunt": "^1.5.3",
|
31
31
|
"grunt-cli": "^1.4.3",
|
32
32
|
"grunt-sh": "^0.2.0",
|
33
|
-
"husky": "^8.0.
|
33
|
+
"husky": "^8.0.3",
|
34
34
|
"karma": "^6.4.1",
|
35
35
|
"karma-chrome-launcher": "^3.1.1",
|
36
36
|
"karma-cli": "^2.0.0",
|
@@ -43,18 +43,18 @@
|
|
43
43
|
"karma-webpack": "^5.0.0",
|
44
44
|
"load-grunt-config": "^4.0.1",
|
45
45
|
"memory-fs": "^0.5.0",
|
46
|
-
"mocha": "^10.
|
47
|
-
"prettier": "^2.8.
|
46
|
+
"mocha": "^10.2.0",
|
47
|
+
"prettier": "^2.8.3",
|
48
48
|
"pretty-quick": "^3.1.3",
|
49
|
-
"rimraf": "^
|
50
|
-
"rollup": "^
|
51
|
-
"sinon": "^
|
49
|
+
"rimraf": "^4.0.6",
|
50
|
+
"rollup": "^3.10.0",
|
51
|
+
"sinon": "^15.0.1",
|
52
52
|
"sinon-chai": "^3.7.0",
|
53
|
-
"ts-loader": "^9.4.
|
54
|
-
"tsconfig-holy-grail": "^
|
53
|
+
"ts-loader": "^9.4.2",
|
54
|
+
"tsconfig-holy-grail": "^12.0.0",
|
55
55
|
"tslint": "^6.1.3",
|
56
|
-
"tslint-config-holy-grail": "^
|
57
|
-
"typescript": "^4.9.
|
56
|
+
"tslint-config-holy-grail": "^54.0.0",
|
57
|
+
"typescript": "^4.9.4",
|
58
58
|
"webpack": "^5.75.0"
|
59
59
|
},
|
60
60
|
"files": [
|
@@ -77,5 +77,5 @@
|
|
77
77
|
"test": "grunt lint && grunt test"
|
78
78
|
},
|
79
79
|
"types": "build/es2019/module.d.ts",
|
80
|
-
"version": "6.0.
|
80
|
+
"version": "6.0.62"
|
81
81
|
}
|