@automattic/social-previews 3.0.10 → 3.0.11
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/CHANGELOG.md +5 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.0.11] - 2026-03-09
|
|
9
|
+
### Changed
|
|
10
|
+
- Switch to Native TypeScript compiler based on Go. [#47375]
|
|
11
|
+
|
|
8
12
|
## [3.0.10] - 2026-02-26
|
|
9
13
|
### Changed
|
|
10
14
|
- Update package dependencies. [#47285] [#47300]
|
|
@@ -136,6 +140,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
136
140
|
|
|
137
141
|
- Initial release after extracting from Calypso.
|
|
138
142
|
|
|
143
|
+
[3.0.11]: https://github.com/Automattic/social-previews/compare/v3.0.10...v3.0.11
|
|
139
144
|
[3.0.10]: https://github.com/Automattic/social-previews/compare/v3.0.9...v3.0.10
|
|
140
145
|
[3.0.9]: https://github.com/Automattic/social-previews/compare/v3.0.8...v3.0.9
|
|
141
146
|
[3.0.8]: https://github.com/Automattic/social-previews/compare/v3.0.7...v3.0.8
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/social-previews",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.11",
|
|
4
4
|
"description": "A suite of components to generate previews for a post for both social and search engines.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wordpress",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"build:prod": "tsup",
|
|
37
37
|
"test": "jest --config=tests/jest.config.cjs",
|
|
38
38
|
"test-coverage": "pnpm run test --coverage",
|
|
39
|
-
"typecheck": "
|
|
39
|
+
"typecheck": "tsgo --noEmit"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@wordpress/components": "32.2.0",
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"@types/jest": "30.0.0",
|
|
54
54
|
"@types/react": "18.3.28",
|
|
55
55
|
"@types/react-dom": "18.3.7",
|
|
56
|
+
"@typescript/native-preview": "7.0.0-dev.20260225.1",
|
|
56
57
|
"babel-jest": "30.2.0",
|
|
57
58
|
"esbuild": "0.25.9",
|
|
58
59
|
"esbuild-sass-plugin": "3.3.1",
|