Gruntfile.js
15 lines
| 570 B
| application/javascript
|
JavascriptLexer
r745 | var gruntConfig = require('./grunt_config.json'); | |||
r1 | ||||
r745 | module.exports = function(grunt) { | |||
grunt.initConfig(gruntConfig); | ||||
r1 | ||||
grunt.loadNpmTasks('grunt-contrib-less'); | ||||
grunt.loadNpmTasks('grunt-contrib-concat'); | ||||
grunt.loadNpmTasks('grunt-contrib-watch'); | ||||
grunt.loadNpmTasks('grunt-contrib-jshint'); | ||||
r689 | grunt.loadNpmTasks('grunt-vulcanize'); | |||
grunt.loadNpmTasks('grunt-crisper'); | ||||
grunt.loadNpmTasks('grunt-contrib-copy'); | ||||
r1 | ||||
r884 | grunt.registerTask('default', ['less:production', 'less:components', 'concat:polymercss', 'copy', 'concat:dist', 'vulcanize', 'crisper']); | |||
r1 | }; | |||