mirror of
https://github.com/WordPress/WordPress.git
synced 2026-06-19 07:37:07 +00:00
52caefbc6b
This iterates on the changes from [61438] by removing the need to: - Check out the WordPress/gutenberg repository at the pinned hash. - Run `npm install` within that checkout. - Run `npm build` within that checkout. Instead, the build script will now download a prebuilt zip file published to the GitHub Container Registry by a GitHub Actions workflow recently merged to the Gutenberg Repository (related PR: https://github.com/WordPress/gutenberg/pull/75844). This also removes redundant code responsible for: - Copying files from the `gutenberg` directory to the appropriate locations during the build script in favor of using `grunt copy`. - Modifying built files to replace specific text, such as `sourceMappingURL`, in favor of `grunt replace`. The remaining files within the `tools/gutenberg` directory have been renamed to remove `gutenberg` from the file names. Since these are already nested in a `gutenberg` directory, that was redundant. Since the intention of the pinned value for the repository in the `package.json` file is to specify a full-length commit hash, `ref` has been renamed to `sha`. In Git `ref` encompasses branches, tags, and commit hashes, so this hopefully makes it more clear that something like `branch-name` should not be used. Follow up to [61438], [61439], [61458], [61492], [61677], [61867]. Props desrosj, dmsnell, westonruter, mcsf, jorbin. See #64393. Built from https://develop.svn.wordpress.org/trunk@61873 git-svn-id: http://core.svn.wordpress.org/trunk@61159 1a063a9b-81f0-0310-95a4-ce76da25c4cd
13 lines
369 B
PHP
13 lines
369 B
PHP
<?php
|
|
/**
|
|
* Pages loader - Auto-generated by build process.
|
|
* Do not edit this file manually.
|
|
*
|
|
* @package wp
|
|
*/
|
|
|
|
require_once __DIR__ . '/pages/font-library/page.php';
|
|
require_once __DIR__ . '/pages/font-library/page-wp-admin.php';
|
|
require_once __DIR__ . '/pages/options-connectors/page.php';
|
|
require_once __DIR__ . '/pages/options-connectors/page-wp-admin.php';
|