@automattic/jetpack-shared-extension-utils 0.4.10 → 0.4.13

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 CHANGED
@@ -5,6 +5,18 @@ 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.4.13] - 2022-07-12
9
+ ### Changed
10
+ - Updated package dependencies.
11
+
12
+ ## [0.4.12] - 2022-07-06
13
+ ### Changed
14
+ - Updated package dependencies. [#24923]
15
+
16
+ ## [0.4.11] - 2022-06-28
17
+ ### Removed
18
+ - Remove unused testing infrastructure.
19
+
8
20
  ## [0.4.10] - 2022-06-21
9
21
  ### Changed
10
22
  - Renaming `master` references to `trunk` [#24712]
@@ -81,6 +93,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
81
93
  ### Changed
82
94
  - Core: prepare utility for release
83
95
 
96
+ [0.4.13]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.12...0.4.13
97
+ [0.4.12]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.11...0.4.12
98
+ [0.4.11]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.10...0.4.11
84
99
  [0.4.10]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.9...0.4.10
85
100
  [0.4.9]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.8...0.4.9
86
101
  [0.4.8]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.7...0.4.8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-shared-extension-utils",
3
- "version": "0.4.10",
3
+ "version": "0.4.13",
4
4
  "description": "Utility functions used by the block editor extensions",
5
5
  "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/shared-extension-utils/#readme",
6
6
  "bugs": {
@@ -13,20 +13,17 @@
13
13
  },
14
14
  "license": "GPL-2.0-or-later",
15
15
  "author": "Automattic",
16
- "scripts": {
17
- "test": "NODE_ENV=test NODE_PATH=tests:. js-test-runner --jsdom --initfile=test-main.jsx 'glob:./!(node_modules)/**/test/*.@(jsx|js)'"
18
- },
16
+ "scripts": {},
19
17
  "dependencies": {
20
- "@wordpress/compose": "5.8.0",
21
- "@wordpress/i18n": "4.10.0",
22
- "@wordpress/plugins": "4.8.0",
23
- "@wordpress/url": "3.11.0",
18
+ "@wordpress/compose": "5.10.0",
19
+ "@wordpress/i18n": "4.12.0",
20
+ "@wordpress/plugins": "4.10.0",
21
+ "@wordpress/url": "3.13.0",
24
22
  "lodash": "4.17.21"
25
23
  },
26
24
  "devDependencies": {
27
- "@babel/core": "7.18.5",
28
- "@babel/preset-react": "7.17.12",
29
- "nyc": "15.1.0",
25
+ "@babel/core": "7.18.6",
26
+ "@babel/preset-react": "7.18.6",
30
27
  "react": "17.0.2"
31
28
  },
32
29
  "exports": {
package/.nycrc DELETED
@@ -1,5 +0,0 @@
1
- {
2
- "extensions": [".js", ".jsx"],
3
- "exclude": "**/test/*.jsx",
4
- "reporter": "clover"
5
- }
package/test-main.jsx DELETED
@@ -1,4 +0,0 @@
1
- import Adapter from '@wojtekmaj/enzyme-adapter-react-17';
2
- import Enzyme from 'enzyme';
3
-
4
- Enzyme.configure( { adapter: new Adapter() } );