changed tooling from browserify to webpack

* using browsersync instead of livereload
* `gulp serve` works as before
* `gulp sync` starts browserSync and serves UI on port 3000
* everything is built in `build/`
* build release with `gulp build --release`
This commit is contained in:
David Kaltschmidt
2015-05-29 11:48:55 +02:00
parent 784c1e0e75
commit 4d027fef19
11 changed files with 329 additions and 174 deletions

View File

@@ -1,3 +1,6 @@
require('font-awesome-webpack');
require('../styles/main.less');
const React = require('react');
const App = require('./components/app.js');