Last active
June 17, 2017 04:42
-
-
Save cutecycle/8e87c17d0dda4d3b63479437eb8d8dc9 to your computer and use it in GitHub Desktop.
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 characters
// See http://brunch.io for documentation. | |
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'] | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment