UNPKG

grunt-systemjs-builder

Version:

grunt task for building projects based on systemjs

18 lines (12 loc) 329 B
module.exports = function (grunt) { grunt.loadNpmTasks("grunt-contrib-jshint"); grunt.initConfig({ jshint:{ options:{ jshintrc: ".jshintrc" }, files : ["./tasks/**/*.js"] } }); grunt.registerTask("default", ["jshint"]); };