@automattic/jetpack-boost-score-api 1.0.7 → 1.0.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
|
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.8] - 2025-08-04
|
|
9
|
+
### Changed
|
|
10
|
+
- Internal updates.
|
|
11
|
+
|
|
8
12
|
## [1.0.7] - 2025-07-21
|
|
9
13
|
### Changed
|
|
10
14
|
- Update dependencies. [#43068]
|
|
@@ -315,6 +319,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
315
319
|
### Added
|
|
316
320
|
- Create package for the boost score bar API [#30781]
|
|
317
321
|
|
|
322
|
+
[1.0.8]: https://github.com/Automattic/jetpack-boost-score-api/compare/v1.0.7...v1.0.8
|
|
318
323
|
[1.0.7]: https://github.com/Automattic/jetpack-boost-score-api/compare/v1.0.6...v1.0.7
|
|
319
324
|
[1.0.6]: https://github.com/Automattic/jetpack-boost-score-api/compare/v1.0.5...v1.0.6
|
|
320
325
|
[1.0.5]: https://github.com/Automattic/jetpack-boost-score-api/compare/v1.0.4...v1.0.5
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/jetpack-boost-score-api",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "A package to get the Jetpack Boost score of a site",
|
|
5
5
|
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/boost-score-api/#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -13,12 +13,23 @@
|
|
|
13
13
|
},
|
|
14
14
|
"license": "GPL-2.0-or-later",
|
|
15
15
|
"author": "Automattic",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./build/index.d.ts",
|
|
19
|
+
"default": "./build/index.js"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"main": "./build/index.js",
|
|
23
|
+
"types": "./build/index.d.ts",
|
|
16
24
|
"scripts": {
|
|
17
25
|
"build": "pnpm run clean && webpack",
|
|
18
26
|
"clean": "rm -rf build/",
|
|
19
|
-
"watch": "pnpm run build && pnpm webpack watch",
|
|
20
27
|
"test": "jest --config=tests/jest.config.cjs",
|
|
21
|
-
"test-coverage": "pnpm run test --coverage"
|
|
28
|
+
"test-coverage": "pnpm run test --coverage",
|
|
29
|
+
"watch": "pnpm run build && pnpm webpack watch"
|
|
30
|
+
},
|
|
31
|
+
"jest": {
|
|
32
|
+
"testEnvironment": "jsdom"
|
|
22
33
|
},
|
|
23
34
|
"dependencies": {
|
|
24
35
|
"@wordpress/i18n": "5.26.0",
|
|
@@ -31,16 +42,5 @@
|
|
|
31
42
|
"typescript": "5.8.3",
|
|
32
43
|
"webpack": "5.94.0",
|
|
33
44
|
"webpack-cli": "6.0.1"
|
|
34
|
-
},
|
|
35
|
-
"exports": {
|
|
36
|
-
".": {
|
|
37
|
-
"types": "./build/index.d.ts",
|
|
38
|
-
"default": "./build/index.js"
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
"main": "./build/index.js",
|
|
42
|
-
"types": "./build/index.d.ts",
|
|
43
|
-
"jest": {
|
|
44
|
-
"testEnvironment": "jsdom"
|
|
45
45
|
}
|
|
46
46
|
}
|