Skip to content

Instantly share code, notes, and snippets.

@cutecycle
Last active June 17, 2017 04:42
Show Gist options
  • Save cutecycle/8e87c17d0dda4d3b63479437eb8d8dc9 to your computer and use it in GitHub Desktop.
Save cutecycle/8e87c17d0dda4d3b63479437eb8d8dc9 to your computer and use it in GitHub Desktop.
// 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