@automattic/jetpack-boost-score-api 1.0.7 → 1.0.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 -15
package/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ 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.9] - 2025-08-11
9
+ ### Changed
10
+ - Update package dependencies. [#44677]
11
+
12
+ ## [1.0.8] - 2025-08-04
13
+ ### Changed
14
+ - Internal updates.
15
+
8
16
  ## [1.0.7] - 2025-07-21
9
17
  ### Changed
10
18
  - Update dependencies. [#43068]
@@ -315,6 +323,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
315
323
  ### Added
316
324
  - Create package for the boost score bar API [#30781]
317
325
 
326
+ [1.0.9]: https://github.com/Automattic/jetpack-boost-score-api/compare/v1.0.8...v1.0.9
327
+ [1.0.8]: https://github.com/Automattic/jetpack-boost-score-api/compare/v1.0.7...v1.0.8
318
328
  [1.0.7]: https://github.com/Automattic/jetpack-boost-score-api/compare/v1.0.6...v1.0.7
319
329
  [1.0.6]: https://github.com/Automattic/jetpack-boost-score-api/compare/v1.0.5...v1.0.6
320
330
  [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.7",
3
+ "version": "1.0.9",
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,15 +13,26 @@
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
- "@wordpress/i18n": "5.26.0",
35
+ "@wordpress/i18n": "6.0.0",
25
36
  "zod": "3.22.3"
26
37
  },
27
38
  "devDependencies": {
@@ -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
  }