@automattic/jetpack-shared-extension-utils 0.4.8 → 0.4.11

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.11] - 2022-06-28
9
+ ### Removed
10
+ - Remove unused testing infrastructure.
11
+
12
+ ## [0.4.10] - 2022-06-21
13
+ ### Changed
14
+ - Renaming `master` references to `trunk` [#24712]
15
+
16
+ ## [0.4.9] - 2022-06-14
17
+ ### Changed
18
+ - Updated package dependencies. [#24722]
19
+
8
20
  ## [0.4.8] - 2022-06-08
9
21
  ### Changed
10
22
  - Reorder JS imports for `import/order` eslint rule. [#24601]
@@ -73,6 +85,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
73
85
  ### Changed
74
86
  - Core: prepare utility for release
75
87
 
88
+ [0.4.11]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.10...0.4.11
89
+ [0.4.10]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.9...0.4.10
90
+ [0.4.9]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.8...0.4.9
76
91
  [0.4.8]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.7...0.4.8
77
92
  [0.4.7]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.6...0.4.7
78
93
  [0.4.6]: https://github.com/Automattic/jetpack-shared-extension-utils/compare/0.4.5...0.4.6
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  Utility functions used by the block editor extensions.
4
4
 
5
5
  This package is the new home for the code in [the `extensions/shared`
6
- directory](https://github.com/Automattic/jetpack/tree/master/projects/plugins/jetpack/extensions/shared)
6
+ directory](https://github.com/Automattic/jetpack/tree/trunk/projects/plugins/jetpack/extensions/shared)
7
7
  of the Jetpack plugin, so that plugins can share it. To begin with, we moving
8
8
  the code used by the Publicize editor extension, but the goal is to bring over
9
9
  all the shared code.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-shared-extension-utils",
3
- "version": "0.4.8",
3
+ "version": "0.4.11",
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.7.0",
21
- "@wordpress/i18n": "4.9.0",
22
- "@wordpress/plugins": "4.7.0",
23
- "@wordpress/url": "3.10.0",
18
+ "@wordpress/compose": "5.8.0",
19
+ "@wordpress/i18n": "4.10.0",
20
+ "@wordpress/plugins": "4.8.0",
21
+ "@wordpress/url": "3.11.0",
24
22
  "lodash": "4.17.21"
25
23
  },
26
24
  "devDependencies": {
27
- "@babel/core": "7.17.10",
28
- "@babel/preset-react": "7.16.7",
29
- "nyc": "15.1.0",
25
+ "@babel/core": "7.18.5",
26
+ "@babel/preset-react": "7.17.12",
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() } );