@wordpress/block-directory 3.0.24 → 3.1.1
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 +8 -0
- package/LICENSE.md +1 -1
- package/README.md +7 -1
- package/package.json +19 -20
package/CHANGELOG.md
CHANGED
package/LICENSE.md
CHANGED
package/README.md
CHANGED
|
@@ -253,4 +253,10 @@ _Returns_
|
|
|
253
253
|
|
|
254
254
|
<!-- END TOKEN(Autogenerated selectors|src/store/selectors.js) -->
|
|
255
255
|
|
|
256
|
-
|
|
256
|
+
## Contributing to this package
|
|
257
|
+
|
|
258
|
+
This is an individual package that's part of the Gutenberg project. The project is organized as a monorepo. It's made up of multiple self-contained software packages, each with a specific purpose. The packages in this monorepo are published to [npm](https://www.npmjs.com/) and used by [WordPress](https://make.wordpress.org/core/) as well as other software projects.
|
|
259
|
+
|
|
260
|
+
To find out more about contributing to this package or Gutenberg as a whole, please read the project's main [contributor guide](https://github.com/WordPress/gutenberg/tree/HEAD/CONTRIBUTING.md).
|
|
261
|
+
|
|
262
|
+
<br /><br /><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/block-directory",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "Extend editor with block directory features to search, download and install blocks.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -26,28 +26,27 @@
|
|
|
26
26
|
"react-native": "src/index",
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@babel/runtime": "^7.16.0",
|
|
29
|
-
"@wordpress/a11y": "^3.
|
|
30
|
-
"@wordpress/api-fetch": "^
|
|
31
|
-
"@wordpress/block-editor": "^8.
|
|
32
|
-
"@wordpress/blocks": "^11.1
|
|
33
|
-
"@wordpress/components": "^19.
|
|
34
|
-
"@wordpress/compose": "^5.
|
|
35
|
-
"@wordpress/core-data": "^4.
|
|
36
|
-
"@wordpress/data": "^6.1
|
|
37
|
-
"@wordpress/edit-post": "^
|
|
38
|
-
"@wordpress/editor": "^12.0
|
|
39
|
-
"@wordpress/element": "^4.
|
|
40
|
-
"@wordpress/hooks": "^3.
|
|
41
|
-
"@wordpress/html-entities": "^3.
|
|
42
|
-
"@wordpress/i18n": "^4.
|
|
43
|
-
"@wordpress/icons": "^6.
|
|
44
|
-
"@wordpress/notices": "^3.
|
|
45
|
-
"@wordpress/plugins": "^4.
|
|
46
|
-
"@wordpress/url": "^3.3.1",
|
|
29
|
+
"@wordpress/a11y": "^3.3.1",
|
|
30
|
+
"@wordpress/api-fetch": "^6.0.1",
|
|
31
|
+
"@wordpress/block-editor": "^8.1.1",
|
|
32
|
+
"@wordpress/blocks": "^11.2.1",
|
|
33
|
+
"@wordpress/components": "^19.4.0",
|
|
34
|
+
"@wordpress/compose": "^5.1.1",
|
|
35
|
+
"@wordpress/core-data": "^4.1.1",
|
|
36
|
+
"@wordpress/data": "^6.2.1",
|
|
37
|
+
"@wordpress/edit-post": "^6.0.0",
|
|
38
|
+
"@wordpress/editor": "^12.2.0",
|
|
39
|
+
"@wordpress/element": "^4.1.1",
|
|
40
|
+
"@wordpress/hooks": "^3.3.1",
|
|
41
|
+
"@wordpress/html-entities": "^3.3.1",
|
|
42
|
+
"@wordpress/i18n": "^4.3.1",
|
|
43
|
+
"@wordpress/icons": "^6.3.0",
|
|
44
|
+
"@wordpress/notices": "^3.3.1",
|
|
45
|
+
"@wordpress/plugins": "^4.1.1",
|
|
47
46
|
"lodash": "^4.17.21"
|
|
48
47
|
},
|
|
49
48
|
"publishConfig": {
|
|
50
49
|
"access": "public"
|
|
51
50
|
},
|
|
52
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "2e4922861e49f5a090f9dc52056165092cfba163"
|
|
53
52
|
}
|