@wordpress/create-block-tutorial-template 1.3.2-next.253d9b6e21.0 → 1.4.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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 1.4.0 (2022-01-27)
6
+
7
+ ### Enhancement
8
+
9
+ - Speed up scaffolding process by omitting WordPress dependencies in the template ([#37639](https://github.com/WordPress/gutenberg/pull/37639)).
10
+ - Update link to block registration reference ([#37674](https://github.com/WordPress/gutenberg/pull/37674))
11
+
5
12
  ## 1.3.0 (2021-07-21)
6
13
 
7
14
  ### Enhancement
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## Gutenberg
2
2
 
3
- Copyright 2016-2021 by the contributors
3
+ Copyright 2016-2022 by the contributors
4
4
 
5
5
  **License for Contributions (on and after April 15, 2021)**
6
6
 
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Create Block Tutorial Template
2
2
 
3
- This is a template for [`@wordpress/create-block`](/packages/create-block/README.md) that is the finished version of the block in the official [WordPress Tutorial](/docs/getting-started/tutorials/create-block/README.md) for the block editor.
3
+ This is a template for [`@wordpress/create-block`](/packages/create-block/README.md) that is the finished version of the block in the official [WordPress Tutorial](/docs/getting-started/create-block/README.md) for the block editor.
4
4
 
5
5
  ## Usage
6
6
 
package/index.js CHANGED
@@ -22,12 +22,6 @@ module.exports = {
22
22
  supports: {
23
23
  html: false,
24
24
  },
25
- npmDependencies: [
26
- '@wordpress/block-editor',
27
- '@wordpress/blocks',
28
- '@wordpress/components',
29
- '@wordpress/i18n',
30
- ],
31
25
  },
32
26
  templatesPath: join( __dirname, 'templates' ),
33
27
  assetsPath: join( __dirname, 'assets' ),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/create-block-tutorial-template",
3
- "version": "1.3.2-next.253d9b6e21.0",
3
+ "version": "1.4.0",
4
4
  "description": "Template for @wordpress/create-block used in the official WordPress tutorial.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -9,7 +9,7 @@
9
9
  "create block",
10
10
  "block template"
11
11
  ],
12
- "homepage": "https://github.com/WordPress/gutenberg/tree/HEAD/docs/getting-started/tutorials/create-block",
12
+ "homepage": "https://github.com/WordPress/gutenberg/tree/HEAD/docs/getting-started/create-block",
13
13
  "repository": {
14
14
  "type": "git",
15
15
  "url": "https://github.com/WordPress/gutenberg.git",
@@ -21,5 +21,5 @@
21
21
  "publishConfig": {
22
22
  "access": "public"
23
23
  },
24
- "gitHead": "c4b9acee18dfcc1767c35631f90725c7d604c5e9"
24
+ "gitHead": "d95ccb9366e249133cdb1d7b25c382446b9ee502"
25
25
  }
@@ -26,7 +26,7 @@
26
26
  * Behind the scenes, it registers also all assets so they can be enqueued
27
27
  * through the block editor in the corresponding context.
28
28
  *
29
- * @see https://developer.wordpress.org/block-editor/tutorials/block-tutorial/writing-your-first-block-type/
29
+ * @see https://developer.wordpress.org/reference/functions/register_block_type/
30
30
  */
31
31
  function {{namespaceSnakeCase}}_{{slugSnakeCase}}_block_init() {
32
32
  register_block_type( __DIR__ );
@@ -3,7 +3,7 @@
3
3
  Contributors: {{author}}
4
4
  {{/author}}
5
5
  Tags: block
6
- Tested up to: 5.8.0
6
+ Tested up to: 5.9
7
7
  Stable tag: {{version}}
8
8
  {{#license}}
9
9
  License: {{license}}