social-logos 3.2.7 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/package.json +15 -14
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
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
+
5
+ ## [3.2.8] - 2025-08-04
6
+ ### Changed
7
+ - Internal updates.
8
+
1
9
  ## [3.2.7] - 2025-07-23
2
10
  ### Changed
3
11
  - Internal updates.
@@ -248,6 +256,8 @@
248
256
 
249
257
  - Build: Refactored (aligned build system with Gridicons).
250
258
 
259
+ [3.2.9]: https://github.com/Automattic/social-logos/compare/v3.2.8...v3.2.9
260
+ [3.2.8]: https://github.com/Automattic/social-logos/compare/v3.2.7...v3.2.8
251
261
  [3.2.7]: https://github.com/Automattic/social-logos/compare/v3.2.6...v3.2.7
252
262
  [3.2.6]: https://github.com/Automattic/social-logos/compare/v3.2.5...v3.2.6
253
263
  [3.2.5]: https://github.com/Automattic/social-logos/compare/v3.2.4...v3.2.5
package/package.json CHANGED
@@ -1,28 +1,28 @@
1
1
  {
2
2
  "name": "social-logos",
3
- "version": "3.2.7",
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": {
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
+ "typecheck": "tsc --noEmit"
25
+ },
26
26
  "dependencies": {
27
27
  "prop-types": "^15.8.1",
28
28
  "react": "18.3.1",
@@ -40,7 +40,8 @@
40
40
  "wawoff2": "^2.0.1",
41
41
  "xml2js": "^0.6.2"
42
42
  },
43
- "scripts": {
44
- "build": "./tools/build"
43
+ "peerDependencies": {
44
+ "react": "^18.0.0",
45
+ "react-dom": "^18.0.0"
45
46
  }
46
47
  }