social-logos 3.2.8 → 3.2.10
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 +10 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [3.2.10] - 2025-09-08
|
|
2
|
+
### Changed
|
|
3
|
+
- Update package dependencies. [#45097]
|
|
4
|
+
|
|
5
|
+
## [3.2.9] - 2025-08-18
|
|
6
|
+
### Added
|
|
7
|
+
- Add `typecheck` script to ensure that TypeScript files are type-checked. [#44795]
|
|
8
|
+
|
|
1
9
|
## [3.2.8] - 2025-08-04
|
|
2
10
|
### Changed
|
|
3
11
|
- Internal updates.
|
|
@@ -252,6 +260,8 @@
|
|
|
252
260
|
|
|
253
261
|
- Build: Refactored (aligned build system with Gridicons).
|
|
254
262
|
|
|
263
|
+
[3.2.10]: https://github.com/Automattic/social-logos/compare/v3.2.9...v3.2.10
|
|
264
|
+
[3.2.9]: https://github.com/Automattic/social-logos/compare/v3.2.8...v3.2.9
|
|
255
265
|
[3.2.8]: https://github.com/Automattic/social-logos/compare/v3.2.7...v3.2.8
|
|
256
266
|
[3.2.7]: https://github.com/Automattic/social-logos/compare/v3.2.6...v3.2.7
|
|
257
267
|
[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.10",
|
|
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",
|
|
@@ -35,7 +36,7 @@
|
|
|
35
36
|
"svgicons2svgfont": "^15.0.0",
|
|
36
37
|
"svgo": "^3.3.2",
|
|
37
38
|
"svgstore": "^3.0.1",
|
|
38
|
-
"typescript": "5.
|
|
39
|
+
"typescript": "5.9.2",
|
|
39
40
|
"wawoff2": "^2.0.1",
|
|
40
41
|
"xml2js": "^0.6.2"
|
|
41
42
|
},
|