Skip to content

Commit

Permalink
Merge branch 'PikadudeNo1-autoprefixer'
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatliner committed Sep 11, 2017
2 parents 61f7c4c + 7834464 commit d195f35
Show file tree
Hide file tree
Showing 20 changed files with 247 additions and 1,617 deletions.
14 changes: 13 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,25 @@ module.exports = function (grunt) {
src: '*.sass',
ext: '.css'
}
},

postcss: {
options: {
processors: [
require('autoprefixer')({ cascade: false })
]
},
dist: {
src: 'dist/css/*.css'
}
}
})

grunt.loadNpmTasks('grunt-browserify')
grunt.loadNpmTasks('grunt-contrib-uglify')
grunt.loadNpmTasks('grunt-contrib-compass')
grunt.loadNpmTasks('grunt-sass')
grunt.loadNpmTasks('grunt-postcss')

grunt.registerTask('default', ['browserify', 'uglify', 'sass'])
grunt.registerTask('default', ['browserify', 'uglify', 'sass', 'postcss'])
}
Loading

0 comments on commit d195f35

Please sign in to comment.