social-logos 3.2.8 → 3.2.9
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
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [3.2.9] - 2025-08-18
|
|
2
|
+
### Added
|
|
3
|
+
- Added type-check script to ensure that the TS files are type-checked. [#44795]
|
|
4
|
+
|
|
1
5
|
## [3.2.8] - 2025-08-04
|
|
2
6
|
### Changed
|
|
3
7
|
- Internal updates.
|
|
@@ -252,6 +256,7 @@
|
|
|
252
256
|
|
|
253
257
|
- Build: Refactored (aligned build system with Gridicons).
|
|
254
258
|
|
|
259
|
+
[3.2.9]: https://github.com/Automattic/social-logos/compare/v3.2.8...v3.2.9
|
|
255
260
|
[3.2.8]: https://github.com/Automattic/social-logos/compare/v3.2.7...v3.2.8
|
|
256
261
|
[3.2.7]: https://github.com/Automattic/social-logos/compare/v3.2.6...v3.2.7
|
|
257
262
|
[3.2.6]: https://github.com/Automattic/social-logos/compare/v3.2.5...v3.2.6
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "social-logos",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.9",
|
|
4
4
|
"description": "A repository of all the social logos used on WordPress.com.",
|
|
5
5
|
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/social-logos/",
|
|
6
6
|
"bugs": {
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"main": "build/react/index.js",
|
|
21
21
|
"types": "build/react/index.d.ts",
|
|
22
22
|
"scripts": {
|
|
23
|
-
"build": "./tools/build"
|
|
23
|
+
"build": "./tools/build",
|
|
24
|
+
"typecheck": "tsc --noEmit"
|
|
24
25
|
},
|
|
25
26
|
"dependencies": {
|
|
26
27
|
"prop-types": "^15.8.1",
|