summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Firshman <ben@firshman.co.uk>2016-09-18 10:31:57 +0100
committerBen Firshman <ben@firshman.co.uk>2016-09-18 10:31:57 +0100
commitd13bd4e35570d6be7458d9adf819bc21ed1d3c1e (patch)
tree6608904c395eb5d032580aad3cf036f00451dc78
parent37cb0ecea5bc768a4899a1403d6335f5b0dbaa35 (diff)
downloadjsnes-master.zip
jsnes-master.tar.gz
jsnes-master.tar.bz2
Something something gruntHEADorigin/masterorigin/HEADmaster
-rw-r--r--Gruntfile.coffee6
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')