@automattic/jetpack-components 1.1.16 → 1.1.17

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 +5 -0
  2. package/package.json +36 -36
package/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ### This is a list detailing changes for the Jetpack RNA Components package releases.
4
4
 
5
+ ## [1.1.17] - 2025-08-04
6
+ ### Changed
7
+ - Internal updates.
8
+
5
9
  ## [1.1.16] - 2025-07-30
6
10
  ### Changed
7
11
  - Internal updates.
@@ -1489,6 +1493,7 @@
1489
1493
  ### Changed
1490
1494
  - Update node version requirement to 14.16.1
1491
1495
 
1496
+ [1.1.17]: https://github.com/Automattic/jetpack-components/compare/1.1.16...1.1.17
1492
1497
  [1.1.16]: https://github.com/Automattic/jetpack-components/compare/1.1.15...1.1.16
1493
1498
  [1.1.15]: https://github.com/Automattic/jetpack-components/compare/1.1.14...1.1.15
1494
1499
  [1.1.14]: https://github.com/Automattic/jetpack-components/compare/1.1.13...1.1.14
package/package.json CHANGED
@@ -1,24 +1,50 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-components",
3
- "version": "1.1.16",
3
+ "version": "1.1.17",
4
4
  "description": "Jetpack Components Package",
5
- "author": "Automattic",
6
- "license": "GPL-2.0-or-later",
7
5
  "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/components/#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/Automattic/jetpack/labels/[JS Package] Components"
8
+ },
8
9
  "repository": {
9
10
  "type": "git",
10
11
  "url": "https://github.com/Automattic/jetpack.git",
11
12
  "directory": "projects/js-packages/components"
12
13
  },
13
- "bugs": {
14
- "url": "https://github.com/Automattic/jetpack/labels/[JS Package] Components"
14
+ "license": "GPL-2.0-or-later",
15
+ "author": "Automattic",
16
+ "sideEffects": [
17
+ "*.css",
18
+ "*.scss"
19
+ ],
20
+ "type": "module",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./build/index.d.ts",
24
+ "default": "./build/index.js"
25
+ },
26
+ "./tools/jp-redirect": {
27
+ "types": "./build/tools/jp-redirect/index.d.ts",
28
+ "default": "./build/tools/jp-redirect/index.js"
29
+ }
30
+ },
31
+ "scripts": {
32
+ "build": "pnpm run clean && pnpm run compile-ts",
33
+ "clean": "rm -rf build/",
34
+ "compile-ts": "tsc --pretty --project tsconfig.build.json",
35
+ "test": "NODE_OPTIONS=--experimental-vm-modules jest",
36
+ "test-coverage": "pnpm run test --coverage",
37
+ "typecheck": "tsc --noEmit"
15
38
  },
39
+ "browserslist": [
40
+ "extends @wordpress/browserslist-config"
41
+ ],
16
42
  "dependencies": {
17
43
  "@automattic/format-currency": "1.0.1",
18
- "@automattic/jetpack-api": "^1.0.5",
19
- "@automattic/jetpack-boost-score-api": "^1.0.7",
20
- "@automattic/jetpack-script-data": "^0.5.0",
21
- "@automattic/number-formatters": "^1.0.9",
44
+ "@automattic/jetpack-api": "^1.0.6",
45
+ "@automattic/jetpack-boost-score-api": "^1.0.8",
46
+ "@automattic/jetpack-script-data": "^0.5.1",
47
+ "@automattic/number-formatters": "^1.0.10",
22
48
  "@babel/runtime": "^7",
23
49
  "@wordpress/browserslist-config": "6.26.0",
24
50
  "@wordpress/components": "29.12.0",
@@ -33,7 +59,7 @@
33
59
  "prop-types": "^15.7.2",
34
60
  "qrcode.react": "4.2.0",
35
61
  "react-slider": "2.0.5",
36
- "social-logos": "^3.2.7",
62
+ "social-logos": "^3.2.8",
37
63
  "uplot": "1.6.31",
38
64
  "uplot-react": "1.1.4"
39
65
  },
@@ -65,31 +91,5 @@
65
91
  "peerDependencies": {
66
92
  "react": "^18.0.0",
67
93
  "react-dom": "^18.0.0"
68
- },
69
- "type": "module",
70
- "browserslist": [
71
- "extends @wordpress/browserslist-config"
72
- ],
73
- "exports": {
74
- ".": {
75
- "types": "./build/index.d.ts",
76
- "default": "./build/index.js"
77
- },
78
- "./tools/jp-redirect": {
79
- "types": "./build/tools/jp-redirect/index.d.ts",
80
- "default": "./build/tools/jp-redirect/index.js"
81
- }
82
- },
83
- "sideEffects": [
84
- "*.css",
85
- "*.scss"
86
- ],
87
- "scripts": {
88
- "build": "pnpm run clean && pnpm run compile-ts",
89
- "clean": "rm -rf build/",
90
- "compile-ts": "tsc --pretty --project tsconfig.build.json",
91
- "test": "NODE_OPTIONS=--experimental-vm-modules jest",
92
- "test-coverage": "pnpm run test --coverage",
93
- "typecheck": "tsc --noEmit"
94
94
  }
95
95
  }