Last active
December 31, 2015 02:39
-
-
Save mikeerickson/7921915 to your computer and use it in GitHub Desktop.
Basic Gruntfile.js template used in all projectsUse following command to bring in all plugins (and their associated depencencies) - npm install grunt grunt-contrib-less grunt-contrib-cssmin grunt-contrib-uglify grunt-contrib-watch grunt-phpunit --save-dev
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){ | |
'use strict'; | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
conf: { | |
js_files: 'public/js/**/*.js', | |
css_files: 'public/css/**/*.css', | |
css_path: 'public/css/', | |
test_files: 'app/tests/*.php', | |
less_files: 'public/less/**/*.less' | |
}, | |
less: { | |
compile: { | |
files: { | |
'public/css/main.css': 'public/less/main.less' | |
} | |
} | |
}, | |
uglify: { | |
options: { | |
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */\n' | |
}, | |
dist: { | |
files: { | |
'public/dist/js/app.min.css': '<%= conf.js_files %>' | |
} | |
} | |
}, | |
cssmin: { | |
options: { | |
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %> */' | |
}, | |
minify: { | |
expand: true, | |
cwd: '<%= conf.css_path %>', | |
src: ['*.css', '!*.min.css'], | |
dest: '<%= conf.css_path %>', | |
ext: '.min.css' | |
} | |
}, | |
phpunit: { | |
classes: { | |
dir: 'app/tests' | |
}, | |
options: { | |
bin: 'vendor/bin/phpunit', | |
colors: true | |
} | |
}, | |
jshint: { | |
options: { | |
jshintrc: true | |
}, | |
all: ['Gruntfile.js', '<%= conf.js_files %>', 'test/**/*.js'] | |
}, | |
watch: { | |
less: { | |
files: ['<%= conf.less_files %>'], | |
tasks: ['less','cssmin'] | |
}, | |
js: { | |
files: ['<%= conf.js_files %>'], | |
tasks: ['uglify','jshint'] | |
}, | |
php: { | |
files: ['<%= conf.test_files %>'], | |
tasks: ['phpunit'] | |
} | |
} | |
}); | |
grunt.loadNpmTasks('grunt-contrib-less'); | |
grunt.loadNpmTasks('grunt-contrib-cssmin'); | |
grunt.loadNpmTasks('grunt-contrib-uglify'); | |
grunt.loadNpmTasks('grunt-contrib-watch'); | |
grunt.loadNpmTasks('grunt-contrib-jshint'); | |
grunt.loadNpmTasks('grunt-phpunit'); | |
grunt.registerTask('default',['less','cssmin']); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment