Created
August 18, 2014 02:22
-
-
Save skeller88/b5f417d7b6552dc63347 to your computer and use it in GitHub Desktop.
Gruntfile for typical grunt workflow
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) { | |
// Project configuration. | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
clean: { | |
build: { | |
src: ['dist/'] | |
} | |
}, | |
compass: { | |
dev: { | |
options: { | |
sassDir: ['app/scss'], | |
cssDir: ['app/css'], | |
environment: 'development' | |
} | |
}, | |
dist: { | |
options: { | |
sassDir: ['app/scss'], | |
cssDir: ['app/css'], | |
environment: 'production' | |
} | |
} | |
}, | |
copy: { | |
dist: { | |
files: [ | |
{expand: true, cwd: 'app', src: 'index.html', dest: 'dist'}, | |
{expand: true, cwd: 'app', src: 'partials/*', dest: 'dist'}, | |
{expand: true, cwd: 'app', src: 'img/*', dest: 'dist'} | |
] | |
} | |
}, | |
hashres: { | |
options: { | |
encoding: 'utf8', | |
fileNameFormat: '${hash}.${name}.cache.${ext}', | |
renameFiles: true | |
}, | |
prod: { | |
src: [ | |
'dist/css/*.css', | |
'dist/img/*.{png,gif,jpg,svg}', | |
'dist/js/*.js' | |
], | |
dest: [ | |
'dist/index.html', | |
'dist/partials/*.html' | |
] | |
} | |
}, | |
karma: { | |
unit: { | |
configFile: 'my.conf.js', | |
singleRun: true | |
} | |
}, | |
mochaTest: { | |
test: { | |
options: { | |
reporter: 'spec' | |
}, | |
src: ['spec/src/**/*.js'] | |
} | |
}, | |
useminPrepare: { | |
html: 'app/index.html', | |
options: { | |
dest: 'dist/' | |
} | |
}, | |
usemin: { | |
html: ['dist/index.html'] | |
}, | |
watch: { | |
//could rename to sass | |
compass: { | |
files: 'app/scss/*.scss', | |
tasks: ['compass:dev'] | |
}, | |
//could rename to js | |
scripts: { | |
files: [ | |
'my.conf.js', | |
'app/js/*.js', | |
'app/util/*.js', | |
'app/lib/*.js', | |
'src/**/*.js', | |
'spec/**/*.js' | |
], | |
tasks: ['mochaTest', 'karma', 'uglify'] | |
} | |
} | |
}); | |
grunt.loadNpmTasks('grunt-hashres'); | |
grunt.loadNpmTasks('grunt-karma'); | |
grunt.loadNpmTasks('grunt-mocha-test'); | |
grunt.loadNpmTasks('grunt-usemin'); | |
grunt.loadNpmTasks('grunt-contrib-clean'); | |
grunt.loadNpmTasks('grunt-contrib-compass'); | |
grunt.loadNpmTasks('grunt-contrib-copy'); | |
grunt.loadNpmTasks('grunt-contrib-cssmin'); | |
grunt.loadNpmTasks('grunt-contrib-concat'); | |
grunt.loadNpmTasks('grunt-contrib-uglify'); | |
grunt.loadNpmTasks('grunt-contrib-watch'); | |
grunt.registerTask('build', [ | |
'clean', 'compass:dev', 'copy', 'useminPrepare', 'concat', 'cssmin', 'uglify', 'hashres', 'usemin' | |
]); | |
grunt.registerTask('heroku:production', [ | |
'build' | |
]); | |
grunt.registerTask('default', ['build', 'watch']); | |
grunt.registerTask('test', ['mochaTest', 'karma']); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment