Last active
September 1, 2016 17:32
-
-
Save joshuamilford/0a0233eed754e6bb44f0 to your computer and use it in GitHub Desktop.
My Gruntfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(grunt) { | |
grunt.initConfig({ | |
notify: { | |
watch: { | |
options: { | |
title: 'Grunt Watch', | |
message: 'Good to go!' | |
} | |
} | |
}, | |
postcss: { | |
options: { | |
map: true, | |
processors: [ | |
require('autoprefixer') | |
] | |
}, | |
dist: { | |
files: { | |
'assets/css/main.min.css': 'assets/css/main.min.css' | |
} | |
} | |
}, | |
sass: { | |
dist: { | |
options: { | |
'style': 'compressed' | |
}, | |
files: { | |
'assets/css/main.min.css': 'assets/sass/main.scss' | |
} | |
} | |
}, | |
uglify: { | |
main: { | |
src: 'assets/js/main.js', | |
dest: 'assets/js/main.min.js' | |
}, | |
libs: { | |
src: 'assets/js/libs/**/*.js', | |
dest: 'assets/js/libs.min.js' | |
} | |
}, | |
watch: { | |
options: { | |
livereload: true | |
}, | |
css: { | |
files: '**/*.scss', | |
tasks: ['sass', 'postcss:dist', 'notify:watch'], | |
}, | |
html: { | |
files: 'html/**/*.html', | |
}, | |
js: { | |
files: 'assets/js/**/*.js', | |
tasks: ['uglify', 'notify:watch'], | |
} | |
} | |
}); | |
grunt.loadNpmTasks('grunt-notify'); | |
grunt.loadNpmTasks('grunt-postcss'); | |
grunt.loadNpmTasks('grunt-contrib-sass'); | |
grunt.loadNpmTasks('grunt-contrib-uglify'); | |
grunt.loadNpmTasks('grunt-contrib-watch'); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "joshua-base", | |
"version": "0.0.1", | |
"devDependencies": { | |
"autoprefixer": "^6.3.6", | |
"grunt": "^0.4.5", | |
"grunt-contrib-concat": "^0.5.1", | |
"grunt-contrib-sass": "^0.9.2", | |
"grunt-contrib-uglify": "^0.11.0", | |
"grunt-contrib-watch": "^0.6.1", | |
"grunt-grunticon": "^2.2.2", | |
"grunt-notify": "^0.4.3", | |
"grunt-postcss": "^0.7.1" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment