@cloudflare/workers-utils 0.3.0 → 0.5.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudflare/workers-utils",
3
- "version": "0.3.0",
3
+ "version": "0.5.0",
4
4
  "description": "Utility package for common Worker operations",
5
5
  "homepage": "https://github.com/cloudflare/workers-sdk#readme",
6
6
  "bugs": {
@@ -39,14 +39,14 @@
39
39
  "ts-dedent": "^2.2.0",
40
40
  "tsdown": "^0.15.9",
41
41
  "tsup": "8.3.0",
42
- "typescript": "^5.8.3",
42
+ "typescript": "~5.8.3",
43
43
  "vitest": "~3.2.0",
44
44
  "xdg-app-paths": "^8.3.0",
45
- "@cloudflare/containers-shared": "0.3.0",
45
+ "@cloudflare/containers-shared": "0.5.0",
46
46
  "@cloudflare/eslint-config-shared": "1.1.0",
47
- "@cloudflare/workers-shared": "0.18.8",
48
- "@cloudflare/workflows-shared": "0.3.8",
49
- "@cloudflare/workers-tsconfig": "0.0.0"
47
+ "@cloudflare/workers-shared": "0.18.9",
48
+ "@cloudflare/workers-tsconfig": "0.0.0",
49
+ "@cloudflare/workflows-shared": "0.3.9"
50
50
  },
51
51
  "volta": {
52
52
  "extends": "../../package.json"
@@ -59,6 +59,8 @@
59
59
  "check:lint": "eslint . --max-warnings=0",
60
60
  "check:type": "tsc -p ./tsconfig.json",
61
61
  "dev": "concurrently -c black,blue --kill-others-on-fail false \"pnpm tsup --watch src\" \"pnpm run check:type --watch --preserveWatchOutput\"",
62
- "test:ci": "vitest run"
62
+ "test": "vitest",
63
+ "test:ci": "vitest run",
64
+ "type:tests": "tsc -p ./tests/tsconfig.json"
63
65
  }
64
66
  }