Making WordPress.org

Changeset 3842


Ignore:
Timestamp:
08/23/2016 05:20:26 PM (8 years ago)
Author:
obenland
Message:

Plugin Directory: Add source map for Sass files.

See #1719.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/Gruntfile.js

    r3832 r3842  
    3737        postcss: {
    3838            options: {
     39                map: true,
    3940                processors: [
    4041                    require('autoprefixer')({
     
    5354            },
    5455            dist: {
    55                 files: {
    56                     'css/style.css': 'css/style.css'
    57                 }
     56                src: 'css/style.css'
    5857            }
    5958        },
     
    6867        sass: {
    6968            options: {
     69                sourceMap: true,
    7070                outputStyle: 'expanded'
    7171            },
     
    144144            css: {
    145145                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']
    155147            }
    156 
    157148        }
    158149    });
Note: See TracChangeset for help on using the changeset viewer.