Skip to content

Commit eb900a4

Browse files
Merge changes published in the Gutenberg plugin "release/14.3" branch
1 parent 23e1362 commit eb900a4

File tree

343 files changed

+17529
-7946
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

343 files changed

+17529
-7946
lines changed

.eslintrc.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ module.exports = {
105105
'flatMap',
106106
'flatten',
107107
'flattenDeep',
108+
'flow',
108109
'flowRight',
109110
'forEach',
110111
'fromPairs',
@@ -151,6 +152,7 @@ module.exports = {
151152
'sum',
152153
'sumBy',
153154
'take',
155+
'throttle',
154156
'times',
155157
'toString',
156158
'trim',
@@ -162,7 +164,6 @@ module.exports = {
162164
'uniqWith',
163165
'upperFirst',
164166
'values',
165-
'words',
166167
'xor',
167168
'zip',
168169
],
@@ -355,7 +356,7 @@ module.exports = {
355356
},
356357
},
357358
{
358-
files: [ 'bin/**/*.js', 'packages/env/**' ],
359+
files: [ 'bin/**/*.js', 'bin/**/*.mjs', 'packages/env/**' ],
359360
rules: {
360361
'no-console': 'off',
361362
},

bin/api-docs/gen-block-lib-list.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Generates core block documentation using block.json files.
33
* Reads from : packages/block-library/src
4-
* Publishes to: docs/reference-guides/core-blocks.ms
4+
* Publishes to: docs/reference-guides/core-blocks.md
55
*/
66

77
/**

bin/api-docs/gen-theme-reference.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* Generates core block documentation using block.json files.
3-
* Reads from : packages/block-library/src
4-
* Publishes to: docs/reference-guides/core-blocks.ms
2+
* Generates theme.json documentation using theme.json schema.
3+
* Reads from : schemas/json/theme.json
4+
* Publishes to: docs/reference-guides/theme-json-reference/theme-json-living.md
55
*/
66

77
/**

0 commit comments

Comments
 (0)