Last active
June 17, 2017 04:42
Revisions
-
cutecycle revised this gist
Jun 17, 2017 . 1 changed file with 13 additions and 9 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,18 +2,22 @@ exports.files = { javascripts: { joinTo: { 'vendor.js': /^(?!app)/, // Files that are not in `app` dir. 'game-browser.js': /^app/ } }, stylesheets: { joinTo: 'app.css' } }; exports.modules = { autoRequire: { "app/game-browser.js": ["initialize"] } }; exports.plugins = { babel: { presets: ['latest'] } }; -
cutecycle revised this gist
Jun 17, 2017 . 1 changed file with 7 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,9 +4,16 @@ exports.files = { joinTo: { 'brunchtest.js': 'game.js' } }, }; exports.paths = { public: 'public', watched: 'game.js' } exports.plugins = { babel: {presets: ['latest']} }; -
cutecycle created this gist
Jun 17, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ // See http://brunch.io for documentation. exports.files = { javascripts: { joinTo: { 'brunchtest.js': 'game.js' } }, }; exports.plugins = { babel: {presets: ['latest']} };