@wordpress/shortcode 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 +5 -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 dev files are type checked without publishing their declarations. ([#81514](https://github.com/WordPress/gutenberg/pull/81514))
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/shortcode",
3
- "version": "4.53.0",
3
+ "version": "4.54.0",
4
4
  "description": "Shortcode module for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -45,8 +45,11 @@
45
45
  "dependencies": {
46
46
  "memize": "^2.1.1"
47
47
  },
48
+ "devDependencies": {
49
+ "@types/jest": "^30.0.0"
50
+ },
48
51
  "publishConfig": {
49
52
  "access": "public"
50
53
  },
51
- "gitHead": "989764d42ff93e33684aaf0b96a5b7f3d9bbff52"
54
+ "gitHead": "5ef24f60261976bb198ad035db24bf81c1fb92b4"
52
55
  }