social-logos 3.2.7 → 3.2.8
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 +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [3.2.8] - 2025-08-04
|
|
2
|
+
### Changed
|
|
3
|
+
- Internal updates.
|
|
4
|
+
|
|
1
5
|
## [3.2.7] - 2025-07-23
|
|
2
6
|
### Changed
|
|
3
7
|
- Internal updates.
|
|
@@ -248,6 +252,7 @@
|
|
|
248
252
|
|
|
249
253
|
- Build: Refactored (aligned build system with Gridicons).
|
|
250
254
|
|
|
255
|
+
[3.2.8]: https://github.com/Automattic/social-logos/compare/v3.2.7...v3.2.8
|
|
251
256
|
[3.2.7]: https://github.com/Automattic/social-logos/compare/v3.2.6...v3.2.7
|
|
252
257
|
[3.2.6]: https://github.com/Automattic/social-logos/compare/v3.2.5...v3.2.6
|
|
253
258
|
[3.2.5]: https://github.com/Automattic/social-logos/compare/v3.2.4...v3.2.5
|
package/package.json
CHANGED
|
@@ -1,28 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "social-logos",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.8",
|
|
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": {
|
|
7
7
|
"url": "https://github.com/Automattic/jetpack/labels/[JS Package] Social Logos"
|
|
8
8
|
},
|
|
9
|
-
"main": "build/react/index.js",
|
|
10
|
-
"types": "build/react/index.d.ts",
|
|
11
|
-
"exports": {
|
|
12
|
-
".": "./build/react/index.js",
|
|
13
|
-
"./svg-sprite/*": "./build/svg-sprite/social-logos.svg",
|
|
14
|
-
"./font/*": "./build/font/*"
|
|
15
|
-
},
|
|
16
|
-
"peerDependencies": {
|
|
17
|
-
"react": "^18.0.0",
|
|
18
|
-
"react-dom": "^18.0.0"
|
|
19
|
-
},
|
|
20
9
|
"repository": {
|
|
21
10
|
"type": "git",
|
|
22
11
|
"url": "https://github.com/Automattic/jetpack.git",
|
|
23
12
|
"directory": "projects/js-packages/social-logos"
|
|
24
13
|
},
|
|
25
14
|
"license": "GPL-2.0+",
|
|
15
|
+
"exports": {
|
|
16
|
+
".": "./build/react/index.js",
|
|
17
|
+
"./font/*": "./build/font/*",
|
|
18
|
+
"./svg-sprite/*": "./build/svg-sprite/social-logos.svg"
|
|
19
|
+
},
|
|
20
|
+
"main": "build/react/index.js",
|
|
21
|
+
"types": "build/react/index.d.ts",
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "./tools/build"
|
|
24
|
+
},
|
|
26
25
|
"dependencies": {
|
|
27
26
|
"prop-types": "^15.8.1",
|
|
28
27
|
"react": "18.3.1",
|
|
@@ -40,7 +39,8 @@
|
|
|
40
39
|
"wawoff2": "^2.0.1",
|
|
41
40
|
"xml2js": "^0.6.2"
|
|
42
41
|
},
|
|
43
|
-
"
|
|
44
|
-
"
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"react": "^18.0.0",
|
|
44
|
+
"react-dom": "^18.0.0"
|
|
45
45
|
}
|
|
46
46
|
}
|