@wordpress/blob 4.53.0 → 4.54.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -1
  2. package/package.json +7 -2
package/CHANGELOG.md CHANGED
@@ -2,8 +2,13 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
- ## 4.53.0 (2026-08-12)
5
+ ## 4.54.0 (2026-08-26)
6
+
7
+ ### Internal
6
8
 
9
+ - Split tsconfig into a build project and a default dev project so test files are type checked without shipping their declarations. ([#81509](https://github.com/WordPress/gutenberg/pull/81509))
10
+
11
+ ## 4.53.0 (2026-08-12)
7
12
 
8
13
  ## 4.52.0 (2026-07-29)
9
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/blob",
3
- "version": "4.53.0",
3
+ "version": "4.54.0",
4
4
  "description": "Blob utilities for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -42,8 +42,13 @@
42
42
  "wpScript": true,
43
43
  "types": "build-types",
44
44
  "sideEffects": false,
45
+ "devDependencies": {
46
+ "@testing-library/jest-dom": "^6.9.1",
47
+ "@types/jest": "^30.0.0",
48
+ "@types/node": "^20.19.39"
49
+ },
45
50
  "publishConfig": {
46
51
  "access": "public"
47
52
  },
48
- "gitHead": "989764d42ff93e33684aaf0b96a5b7f3d9bbff52"
53
+ "gitHead": "5ef24f60261976bb198ad035db24bf81c1fb92b4"
49
54
  }