diff options
author | Hunter Wu <hunter_wu@miiicasa.com> | 2013-07-26 00:11:50 +0800 |
---|---|---|
committer | Hunter Wu <hunter_wu@miiicasa.com> | 2013-07-26 00:11:50 +0800 |
commit | 2a6ea1e753f7ee878a301b02d869eedc1fd87e6c (patch) | |
tree | bb4da6421f16ba740b218bf93cb681a69b237b6c | |
parent | a5526ed2c4b7c2cc7ed9cc9043c4054bd34a69c5 (diff) | |
download | jsnes-2a6ea1e753f7ee878a301b02d869eedc1fd87e6c.zip jsnes-2a6ea1e753f7ee878a301b02d869eedc1fd87e6c.tar.gz jsnes-2a6ea1e753f7ee878a301b02d869eedc1fd87e6c.tar.bz2 |
Modified gruntfile to explicitly concatenate js in order
-rw-r--r-- | Gruntfile.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 26dffe4..d2f3ca8 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -3,7 +3,7 @@ module.exports = (grunt) -> pkg: grunt.file.readJSON('package.json') concat: source: - src: "source/*.js" + 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: |