Changeset 5333
- Timestamp:
- 04/02/2014 04:54:11 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r5327 r5333 57 57 // Project configuration. 58 58 grunt.initConfig({ 59 pkg: grunt.file.readJSON('package.json'), 59 60 clean: { 60 61 all: [ BUILD_DIR ], … … 105 106 ext: '.min.css', 106 107 src: BBP_LTR_CSS, 107 options: { banner: '/*! https://wordpress.org/plugins/bbpress/ */' } 108 options: { 109 banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - ' + 110 '<%= grunt.template.today("UTC:yyyy-mm-dd h:MM:ss TT Z") %> - ' + 111 'https://wordpress.org/plugins/bbpress/ */' 112 } 108 113 }, 109 114 rtl: { … … 113 118 ext: '.min.css', 114 119 src: BBP_RTL_CSS, 115 options: { banner: '/*! https://wordpress.org/plugins/bbpress/ */' } 120 options: { 121 banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - ' + 122 '<%= grunt.template.today("UTC:yyyy-mm-dd h:MM:ss TT Z") %> - ' + 123 'https://wordpress.org/plugins/bbpress/ */' 124 } 116 125 } 117 126 }, … … 179 188 }, 180 189 options: { 181 banner: '/*! https://wordpress.org/plugins/bbpress/ */\n' 190 banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - ' + 191 '<%= grunt.template.today("UTC:yyyy-mm-dd h:MM:ss TT Z") %> - ' + 192 'https://wordpress.org/plugins/bbpress/ */\n' 182 193 } 183 194 },
Note: See TracChangeset
for help on using the changeset viewer.