Changeset 3842
- Timestamp:
- 08/23/2016 05:20:26 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/Gruntfile.js
r3832 r3842 37 37 postcss: { 38 38 options: { 39 map: true, 39 40 processors: [ 40 41 require('autoprefixer')({ … … 53 54 }, 54 55 dist: { 55 files: { 56 'css/style.css': 'css/style.css' 57 } 56 src: 'css/style.css' 58 57 } 59 58 }, … … 68 67 sass: { 69 68 options: { 69 sourceMap: true, 70 70 outputStyle: 'expanded' 71 71 }, … … 144 144 css: { 145 145 files: ['**/*.scss'], 146 tasks: ['sass'] 147 }, 148 rtl: { 149 files: ['**/style.css'], 150 tasks: ['postcss', 'rtlcss:dynamic'] 151 }, 152 livereload: { 153 options: { livereload: true }, 154 files: [ 'css/style.css' ] 146 tasks: ['sass', 'postcss', 'rtlcss:dynamic'] 155 147 } 156 157 148 } 158 149 });
Note: See TracChangeset
for help on using the changeset viewer.