@wordpress/docgen 1.19.0 → 1.19.1-next.f435e9e01b.0
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/README.md +8 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -254,8 +254,6 @@ console.log( result ); // Will log 3
|
|
|
254
254
|
`number` The result of subtracting the two numbers.
|
|
255
255
|
````
|
|
256
256
|
|
|
257
|
-
<br/><br/><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p>
|
|
258
|
-
|
|
259
257
|
### TypeScript support
|
|
260
258
|
|
|
261
259
|
Entry point `index.ts`:
|
|
@@ -293,3 +291,11 @@ Adds two numbers.
|
|
|
293
291
|
|
|
294
292
|
`number` The result of adding the two numbers.
|
|
295
293
|
```
|
|
294
|
+
|
|
295
|
+
## Contributing to this package
|
|
296
|
+
|
|
297
|
+
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.
|
|
298
|
+
|
|
299
|
+
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).
|
|
300
|
+
|
|
301
|
+
<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/docgen",
|
|
3
|
-
"version": "1.19.0",
|
|
3
|
+
"version": "1.19.1-next.f435e9e01b.0",
|
|
4
4
|
"description": "Autogenerate public API documentation from exports and JSDoc comments.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "14b2846015dfb1b440ce93accdd03842ebe5f1cd"
|
|
43
43
|
}
|