@wordpress/keyboard-shortcuts 3.1.0 → 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 +6 -0
- package/README.md +7 -1
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
@@ -53,4 +53,10 @@ _Parameters_
|
|
53
53
|
|
54
54
|
<!-- END TOKEN(Autogenerated API docs) -->
|
55
55
|
|
56
|
-
|
56
|
+
## Contributing to this package
|
57
|
+
|
58
|
+
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.
|
59
|
+
|
60
|
+
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).
|
61
|
+
|
62
|
+
<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/keyboard-shortcuts",
|
3
|
-
"version": "3.1.
|
3
|
+
"version": "3.1.1",
|
4
4
|
"description": "Handling keyboard shortcuts.",
|
5
5
|
"author": "The WordPress Contributors",
|
6
6
|
"license": "GPL-2.0-or-later",
|
@@ -26,15 +26,14 @@
|
|
26
26
|
"react-native": "src/index",
|
27
27
|
"dependencies": {
|
28
28
|
"@babel/runtime": "^7.16.0",
|
29
|
-
"@wordpress/
|
30
|
-
"@wordpress/
|
31
|
-
"@wordpress/
|
32
|
-
"@wordpress/keycodes": "^3.3.0",
|
29
|
+
"@wordpress/data": "^6.2.1",
|
30
|
+
"@wordpress/element": "^4.1.1",
|
31
|
+
"@wordpress/keycodes": "^3.3.1",
|
33
32
|
"lodash": "^4.17.21",
|
34
33
|
"rememo": "^3.0.0"
|
35
34
|
},
|
36
35
|
"publishConfig": {
|
37
36
|
"access": "public"
|
38
37
|
},
|
39
|
-
"gitHead": "
|
38
|
+
"gitHead": "2e4922861e49f5a090f9dc52056165092cfba163"
|
40
39
|
}
|