Changeset 47312
- Timestamp:
- 02/19/2020 01:48:15 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r47303 r47312 28 28 'wp-content/plugins/akismet/**', 29 29 '!wp-content/themes/twenty*/node_modules/**', 30 '!wp-config.php',31 30 ], 32 31 changedFiles = { … … 98 97 plugins: [BUILD_DIR + 'wp-content/plugins'], 99 98 themes: [BUILD_DIR + 'wp-content/themes'], 100 files: buildFiles.map( function( file ) { 99 files: buildFiles.concat( [ 100 '!wp-config.php', 101 ] ).map( function( file ) { 101 102 if ( '!' === file.charAt( 0 ) ) { 102 103 return '!' + BUILD_DIR + file.substring( 1 ); 103 104 } 104 105 return BUILD_DIR + file; 105 } ),106 } ), 106 107 css: [ 107 108 WORKING_DIR + 'wp-admin/css/*.min.css',
Note: See TracChangeset
for help on using the changeset viewer.