PluginProbe
Gutenberg / 23.2.0
Gutenberg v23.2.0
24.0.0 23.9.1 23.9.0 23.8.0 23.7.2 23.7.1 23.7.0 23.6.1 23.6.2 23.6.0 23.5.3 23.5.2 23.5.1 23.5.0 23.4.0 23.3.2 23.3.1 23.3.0 23.2.0 23.2.1 23.2.2 23.1.1 23.1.0 23.0.1 12.6.0 All 403 releases
gutenberg / build / build.php
build
modules 3 months ago pages 3 months ago routes 3 months ago scripts 3 months ago styles 3 months ago widgets 3 months ago build.php 969 B 3 months ago constants.php 279 B 3 months ago modules.php 1.9 KB 3 months ago pages.php 977 B 3 months ago routes.php 9.8 KB 3 months ago scripts.php 3.2 KB 5 months ago styles.php 3.0 KB 5 months ago widgets.php 3.8 KB 3 months ago

build.php in Gutenberg 23.2.0, at build/build.php

44 lines 969 B Raw Download Zip
1 <?php
2 /**
3 * Main entry point for auto-generated asset registration.
4 * Do not edit this file manually.
5 *
6 * @package gutenberg
7 */
8
9 // Load script module registration.
10 $modules_file = __DIR__ . '/modules.php';
11 if ( file_exists( $modules_file ) ) {
12 require_once $modules_file;
13 }
14
15 // Load script registration.
16 $scripts_file = __DIR__ . '/scripts.php';
17 if ( file_exists( $scripts_file ) ) {
18 require_once $scripts_file;
19 }
20
21 // Load style registration.
22 $styles_file = __DIR__ . '/styles.php';
23 if ( file_exists( $styles_file ) ) {
24 require_once $styles_file;
25 }
26
27 // Load routes registration.
28 $routes_file = __DIR__ . '/routes.php';
29 if ( file_exists( $routes_file ) ) {
30 require_once $routes_file;
31 }
32
33 // Load widgets registration.
34 $widgets_file = __DIR__ . '/widgets.php';
35 if ( file_exists( $widgets_file ) ) {
36 require_once $widgets_file;
37 }
38
39 // Load pages registration.
40 $pages_file = __DIR__ . '/pages.php';
41 if ( file_exists( $pages_file ) ) {
42 require_once $pages_file;
43 }
44