diff options
Diffstat (limited to 'Gruntfile.coffee')
-rw-r--r-- | Gruntfile.coffee | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Gruntfile.coffee b/Gruntfile.coffee index d2f3ca8..8879974 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -2,15 +2,15 @@ module.exports = (grunt) -> grunt.initConfig pkg: grunt.file.readJSON('package.json') concat: - source: + dist: src: ["source/nes.js", "source/utils.js", "source/cpu.js", "source/keyboard.js", "source/mappers.js", "source/papu.js", "source/ppu.js", "source/rom.js", "source/ui.js"] dest: "build/jsnes.js" uglify: - source: + dist: src: "build/jsnes.js" dest: "build/jsnes.min.js" jshint: - source: + dist: src: "source/*.js" grunt.loadNpmTasks('grunt-contrib-jshint') |