worker-timers 8.0.25 → 8.0.26

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 (1) hide show
  1. package/package.json +20 -31
package/package.json CHANGED
@@ -17,51 +17,40 @@
17
17
  "dependencies": {
18
18
  "@babel/runtime": "^7.28.4",
19
19
  "tslib": "^2.8.1",
20
- "worker-timers-broker": "^8.0.11",
20
+ "worker-timers-broker": "^8.0.12",
21
21
  "worker-timers-worker": "^9.0.11"
22
22
  },
23
23
  "description": "A replacement for setInterval() and setTimeout() which works in unfocused windows.",
24
24
  "devDependencies": {
25
25
  "@babel/cli": "^7.28.3",
26
- "@babel/core": "^7.28.4",
26
+ "@babel/core": "^7.28.5",
27
27
  "@babel/plugin-external-helpers": "^7.27.1",
28
- "@babel/plugin-transform-runtime": "^7.28.3",
29
- "@babel/preset-env": "^7.28.3",
28
+ "@babel/plugin-transform-runtime": "^7.28.5",
29
+ "@babel/preset-env": "^7.28.5",
30
30
  "@babel/register": "^7.28.3",
31
31
  "@commitlint/cli": "^19.8.1",
32
32
  "@commitlint/config-angular": "^19.8.1",
33
- "@rollup/plugin-babel": "^6.0.4",
34
- "@rollup/plugin-replace": "^6.0.2",
33
+ "@rollup/plugin-babel": "^6.1.0",
34
+ "@rollup/plugin-replace": "^6.0.3",
35
+ "@vitest/browser-webdriverio": "^4.0.15",
35
36
  "babel-loader": "^10.0.0",
36
- "chai": "^4.3.10",
37
37
  "commitizen": "^4.3.1",
38
38
  "cz-conventional-changelog": "^3.3.0",
39
39
  "eslint": "^8.57.0",
40
- "eslint-config-holy-grail": "^61.0.1",
40
+ "eslint-config-holy-grail": "^61.0.3",
41
41
  "husky": "^9.1.7",
42
- "karma": "^6.4.4",
43
- "karma-chrome-launcher": "^3.2.0",
44
- "karma-firefox-launcher": "^2.1.3",
45
- "karma-mocha": "^2.0.1",
46
- "karma-sauce-launcher": "^4.3.6",
47
- "karma-sinon-chai": "^2.0.2",
48
- "karma-webkit-launcher": "^2.6.0",
49
- "karma-webpack": "^5.0.1",
50
- "lint-staged": "^16.1.6",
51
- "memfs": "^4.43.0",
52
- "mocha": "^11.7.2",
53
- "prettier": "^3.6.2",
54
- "rimraf": "^6.0.1",
55
- "rollup": "^4.52.0",
56
- "sinon": "^17.0.2",
57
- "sinon-chai": "^3.7.0",
58
- "terser-webpack-plugin": "^5.3.14",
59
- "ts-loader": "^9.5.4",
42
+ "lint-staged": "^16.2.7",
43
+ "memfs": "^4.51.1",
44
+ "prettier": "^3.7.4",
45
+ "rimraf": "^6.1.2",
46
+ "rollup": "^4.53.3",
47
+ "terser-webpack-plugin": "^5.3.16",
60
48
  "tsconfig-holy-grail": "^15.0.2",
61
49
  "tslint": "^6.1.3",
62
50
  "tslint-config-holy-grail": "^56.0.6",
63
- "typescript": "^5.9.2",
64
- "webpack": "^5.101.3",
51
+ "typescript": "^5.9.3",
52
+ "vitest": "^4.0.15",
53
+ "webpack": "^5.103.0",
65
54
  "webpack-cli": "^6.0.1"
66
55
  },
67
56
  "files": [
@@ -96,9 +85,9 @@
96
85
  "prepare": "husky",
97
86
  "prepublishOnly": "npm run build",
98
87
  "test": "npm run lint && npm run build && npm run test:integration-browser && npm run test:integration-node",
99
- "test:integration-browser": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"integration\" ] && [ \"$TARGET\" = \"\" -o \"$TARGET\" = \"chrome\" -o \"$TARGET\" = \"firefox\" -o \"$TARGET\" = \"safari\" ]; then karma start config/karma/config-integration.js --single-run; fi",
100
- "test:integration-node": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"integration\" ] && [ \"$TARGET\" = \"\" -o \"$TARGET\" = \"node\" ]; then mocha --bail --parallel --recursive --require config/mocha/config-integration.js test/integration; fi"
88
+ "test:integration-browser": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"integration\" ] && [ \"$TARGET\" = \"\" -o \"$TARGET\" = \"chrome\" -o \"$TARGET\" = \"firefox\" -o \"$TARGET\" = \"safari\" ]; then npx vitest --config config/vitest/integration.ts; fi",
89
+ "test:integration-node": "if [ \"$TYPE\" = \"\" -o \"$TYPE\" = \"integration\" ] && [ \"$TARGET\" = \"\" -o \"$TARGET\" = \"node\" ]; then npx vitest --browser.enabled false --config config/vitest/integration.ts; fi"
101
90
  },
102
91
  "types": "build/es2019/module.d.ts",
103
- "version": "8.0.25"
92
+ "version": "8.0.26"
104
93
  }