Changeset 9697
- Timestamp:
- 04/05/2015 02:21:26 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.travis.yml
r9560 r9697 56 56 - cd $plugin_dir 57 57 - npm install -g grunt-cli 58 - gem install scss-lint 58 59 59 60 # before_script: Failures in this section will result in build status 'errored' -
trunk/Gruntfile.js
r9665 r9697 164 164 } 165 165 }, 166 scsslint: { 167 options: { 168 bundleExec: false, 169 colorizeOutput: true, 170 config: '.scss-lint.yml' 171 }, 172 core: [ SOURCE_DIR + 'bp-templates/bp-legacy/css/*.scss' ] 173 }, 166 174 cssmin: { 167 175 minify: { … … 229 237 * Register tasks. 230 238 */ 231 grunt.registerTask( 'src', ['jsvalidate:src', 'jshint', ' cssjanus'] );239 grunt.registerTask( 'src', ['jsvalidate:src', 'jshint', 'scsslint', 'cssjanus'] ); 232 240 grunt.registerTask( 'commit', ['src', 'checktextdomain', 'imagemin'] ); 233 241 grunt.registerTask( 'build', ['commit', 'clean:all', 'copy:files', 'uglify', 'jsvalidate:build', 'cssmin', 'makepot', 'exec:bpdefault'] ); -
trunk/package.json
r9584 r9697 21 21 "grunt-patch-wordpress": "~0.3.0", 22 22 "grunt-sass": "~0.18.0", 23 "grunt-scss-lint": "~0.3.6", 23 24 "grunt-wp-i18n": "~0.5.0", 24 25 "matchdep": "~0.3.0"
Note: See TracChangeset
for help on using the changeset viewer.