@automattic/jetpack-videopress-core 0.1.2 → 0.1.3

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 +6 -0
  2. package/package.json +13 -13
package/CHANGELOG.md CHANGED
@@ -5,6 +5,11 @@ 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
+ ## [0.1.3] - 2025-08-06
9
+ ### Changed
10
+ - Update dependencies. [#43569]
11
+ - Update package dependencies. [#43734] [#43766] [#44151] [#44217] [#44356]
12
+
8
13
  ## [0.1.2] - 2025-05-13
9
14
  ### Changed
10
15
  - Update dependencies. [#41847]
@@ -30,5 +35,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
30
35
  ### Fixed
31
36
  - Remove "private" flag from package.json so package can be published. [#33744]
32
37
 
38
+ [0.1.3]: https://github.com/Automattic/jetpack-videopress-core/compare/0.1.2...0.1.3
33
39
  [0.1.2]: https://github.com/Automattic/jetpack-videopress-core/compare/0.1.1...0.1.2
34
40
  [0.1.1]: https://github.com/Automattic/jetpack-videopress-core/compare/0.1.0...0.1.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-videopress-core",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "VideoPress Core Functionality",
5
5
  "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/videopress-core/#readme",
6
6
  "bugs": {
@@ -13,27 +13,27 @@
13
13
  },
14
14
  "license": "GPL-2.0-or-later",
15
15
  "author": "Automattic",
16
+ "exports": {
17
+ ".": "./index.jsx",
18
+ "./action-types": "./src/state/action-types",
19
+ "./state": "./src/state"
20
+ },
16
21
  "scripts": {
17
22
  "build": "pnpm run clean && webpack",
18
23
  "clean": "rm -rf build/",
19
- "watch": "pnpm run build && pnpm webpack watch",
20
24
  "test": "NODE_OPTIONS=--experimental-vm-modules jest --config=tests/jest.config.cjs",
21
- "test-coverage": "pnpm run test --coverage"
25
+ "test-coverage": "pnpm run test --coverage",
26
+ "watch": "pnpm run build && pnpm webpack watch"
22
27
  },
23
28
  "devDependencies": {
24
- "jest": "*",
25
29
  "@automattic/jetpack-webpack-config": "workspace:*",
26
- "@babel/core": "7.26.10",
27
- "@babel/preset-react": "7.26.3",
28
- "@types/jest": "29.5.14",
30
+ "@babel/core": "7.28.0",
31
+ "@babel/preset-react": "7.27.1",
32
+ "@types/jest": "30.0.0",
33
+ "jest": "30.0.4",
29
34
  "tslib": "2.5.0",
30
- "typescript": "5.8.2",
35
+ "typescript": "5.8.3",
31
36
  "webpack": "5.94.0",
32
37
  "webpack-cli": "6.0.1"
33
- },
34
- "exports": {
35
- ".": "./index.jsx",
36
- "./state": "./src/state",
37
- "./action-types": "./src/state/action-types"
38
38
  }
39
39
  }