Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with
or
.
Download ZIP
Branch: master
Fetching contributors…

Cannot retrieve contributors at this time

22 lines (18 sloc) 0.478 kB
module.exports = function(grunt) {
grunt.initConfig({
run_grunt: {
pbc: {
src: ['node_modules/pbs/Gruntfile.js']
}
},
watch: {
pbc: {
files: ['node_modules/pbs/**/*'],
tasks: ['run_grunt']
}
}
});
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-run-grunt');
grunt.registerTask('default', ['run_grunt']);
}
Jump to Line
Something went wrong with that request. Please try again.