Last active
August 18, 2016 06:04
-
-
Save DanielFGray/b2643d97efb27aea787764ddfc9ff622 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
module.exports = { | |
files: { | |
javascripts: { | |
joinTo: { | |
'vendor.js': /^(?!app)/, | |
'app.js': /^app/ | |
} | |
}, | |
stylesheets: {joinTo: 'app.css'} | |
}, | |
plugins: { | |
babel: {presets: ['es2015', 'react']} | |
} | |
}; |
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
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
{ | |
"name": "your-app", | |
"description": "Description", | |
"author": "Your Name", | |
"version": "0.0.1", | |
"repository": { | |
"type": "git", | |
"url": "" | |
}, | |
"scripts": { | |
"start": "brunch watch --server", | |
"prod": "brunch build --production" | |
}, | |
"dependencies": { | |
"react": "~15.3.0", | |
"react-dom": "~15.3.0" | |
}, | |
"devDependencies": { | |
"auto-reload-brunch": "^2.0.0", | |
"babel-brunch": "~6.0.0", | |
"babel-preset-es2015": "~6.9.0", | |
"babel-preset-react": "~6.11.1", | |
"brunch": "^2.4.0", | |
"clean-css-brunch": "^2.0.0", | |
"css-brunch": "^2.0.0", | |
"javascript-brunch": "^2.0.0", | |
"uglify-js-brunch": "^2.0.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment