Changeset 47303
- Timestamp:
- 02/18/2020 09:25:25 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r47122 r47303 27 27 'wp-content/plugins/hello.php', 28 28 'wp-content/plugins/akismet/**', 29 '!wp-content/themes/twenty*/node_modules/**' 29 '!wp-content/themes/twenty*/node_modules/**', 30 '!wp-config.php', 30 31 ], 31 32 changedFiles = { … … 98 99 themes: [BUILD_DIR + 'wp-content/themes'], 99 100 files: buildFiles.map( function( file ) { 101 if ( '!' === file.charAt( 0 ) ) { 102 return '!' + BUILD_DIR + file.substring( 1 ); 103 } 100 104 return BUILD_DIR + file; 101 105 }),
Note: See TracChangeset
for help on using the changeset viewer.