Skip to content
This repository has been archived by the owner on May 21, 2021. It is now read-only.

Commit

Permalink
feat(build): include sass styling in dist
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Burgmer committed Mar 5, 2014
1 parent 9ca6534 commit 292e604
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ module.exports = function (grunt) {
src: 'src/w11k-select.tpl.html',
dest: 'dist/w11k-select.tpl.html'
},
sass: {
src: 'src/w11k-select.scss',
dest: 'dist/w11k-select.scss'
},
release: {
files: [
{
Expand Down Expand Up @@ -127,7 +131,7 @@ module.exports = function (grunt) {

grunt.registerTask('default', ['build']);

grunt.registerTask('build', ['clean', 'jshint:src', 'sass', 'copy:template', 'html2js', 'uglify']);
grunt.registerTask('build', ['clean', 'jshint:src', 'sass', 'copy:template', 'copy:sass', 'html2js', 'uglify']);

grunt.registerTask('release', ['build', 'copy:release']);

Expand Down

0 comments on commit 292e604

Please sign in to comment.