worker-timers 7.0.54 → 7.0.55
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/build/es5/bundle.js +2 -3
- package/package.json +12 -12
package/build/es5/bundle.js
CHANGED
|
@@ -10,13 +10,12 @@
|
|
|
10
10
|
if (workerTimers !== null) {
|
|
11
11
|
return workerTimers;
|
|
12
12
|
}
|
|
13
|
-
|
|
14
13
|
var blob = new Blob([worker], {
|
|
15
14
|
type: 'application/javascript; charset=utf-8'
|
|
16
15
|
});
|
|
17
16
|
var url = URL.createObjectURL(blob);
|
|
18
|
-
workerTimers = load(url);
|
|
19
|
-
|
|
17
|
+
workerTimers = load(url);
|
|
18
|
+
// Bug #1: Edge doesn't like the URL to be revoked directly.
|
|
20
19
|
workerTimers.setTimeout(function () {
|
|
21
20
|
return URL.revokeObjectURL(url);
|
|
22
21
|
}, 0);
|
package/package.json
CHANGED
|
@@ -15,17 +15,17 @@
|
|
|
15
15
|
}
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@babel/runtime": "^7.19.
|
|
18
|
+
"@babel/runtime": "^7.19.4",
|
|
19
19
|
"tslib": "^2.4.0",
|
|
20
20
|
"worker-timers-broker": "^6.0.76",
|
|
21
21
|
"worker-timers-worker": "^7.0.42"
|
|
22
22
|
},
|
|
23
23
|
"description": "A replacement for setInterval() and setTimeout() which works in unfocused windows.",
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@babel/core": "^7.19.
|
|
25
|
+
"@babel/core": "^7.19.6",
|
|
26
26
|
"@babel/plugin-external-helpers": "^7.18.6",
|
|
27
|
-
"@babel/plugin-transform-runtime": "^7.
|
|
28
|
-
"@babel/preset-env": "^7.19.
|
|
27
|
+
"@babel/plugin-transform-runtime": "^7.19.6",
|
|
28
|
+
"@babel/preset-env": "^7.19.4",
|
|
29
29
|
"@commitlint/cli": "^17.1.2",
|
|
30
30
|
"@commitlint/config-angular": "^17.1.0",
|
|
31
31
|
"@rollup/plugin-babel": "^5.3.1",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"chai": "^4.3.6",
|
|
35
35
|
"commitizen": "^4.2.5",
|
|
36
36
|
"cz-conventional-changelog": "^3.3.0",
|
|
37
|
-
"eslint": "^8.
|
|
38
|
-
"eslint-config-holy-grail": "^52.0.
|
|
37
|
+
"eslint": "^8.26.0",
|
|
38
|
+
"eslint-config-holy-grail": "^52.0.33",
|
|
39
39
|
"grunt": "^1.5.3",
|
|
40
40
|
"grunt-cli": "^1.4.3",
|
|
41
41
|
"grunt-sh": "^0.2.0",
|
|
42
42
|
"husky": "^8.0.1",
|
|
43
|
-
"karma": "^6.4.
|
|
43
|
+
"karma": "^6.4.1",
|
|
44
44
|
"karma-chrome-launcher": "^3.1.1",
|
|
45
45
|
"karma-firefox-launcher": "^2.1.2",
|
|
46
46
|
"karma-mocha": "^2.0.1",
|
|
@@ -54,15 +54,15 @@
|
|
|
54
54
|
"prettier": "^2.7.1",
|
|
55
55
|
"pretty-quick": "^3.1.3",
|
|
56
56
|
"rimraf": "^3.0.2",
|
|
57
|
-
"rollup": "^2.79.
|
|
58
|
-
"sinon": "^14.0.
|
|
57
|
+
"rollup": "^2.79.1",
|
|
58
|
+
"sinon": "^14.0.1",
|
|
59
59
|
"sinon-chai": "^3.7.0",
|
|
60
60
|
"terser-webpack-plugin": "^5.3.6",
|
|
61
|
-
"ts-loader": "^9.
|
|
61
|
+
"ts-loader": "^9.4.1",
|
|
62
62
|
"tsconfig-holy-grail": "^11.1.36",
|
|
63
63
|
"tslint": "^6.1.3",
|
|
64
64
|
"tslint-config-holy-grail": "^53.2.33",
|
|
65
|
-
"typescript": "^4.8.
|
|
65
|
+
"typescript": "^4.8.4",
|
|
66
66
|
"webpack": "^5.74.0",
|
|
67
67
|
"webpack-cli": "^4.10.0"
|
|
68
68
|
},
|
|
@@ -95,5 +95,5 @@
|
|
|
95
95
|
"test": "grunt lint && grunt test"
|
|
96
96
|
},
|
|
97
97
|
"types": "build/es2019/module.d.ts",
|
|
98
|
-
"version": "7.0.
|
|
98
|
+
"version": "7.0.55"
|
|
99
99
|
}
|