Move styleguide to actual app

This commit is contained in:
vrde 2015-09-03 15:50:39 +02:00
parent 2f5c70eceb
commit 4fe11a9a32
3 changed files with 22 additions and 1 deletions

View File

@ -35,12 +35,15 @@
"devDependencies": {
"babel-eslint": "^3.1.11",
"babel-jest": "^5.2.0",
"jest-cli": "^0.4.0"
"jest-cli": "^0.4.0",
"webpack": "^1.12.1",
"webpack-dev-server": "^1.10.1"
},
"dependencies": {
"alt": "^0.16.5",
"audiojs": "vrde/audiojs",
"babel": "^5.6.14",
"babel-loader": "^5.3.2",
"babelify": "^6.1.2",
"bootstrap-sass": "^3.3.4",
"browser-sync": "^2.7.5",

0
webpack-gulpfile.js Normal file
View File

18
webpack.config.js Normal file
View File

@ -0,0 +1,18 @@
var webpack = require('webpack');
module.exports = {
entry: './js/app.js',
target: 'web',
output: {
path: __dirname,
filename: 'bundle.js'
},
module: {
loaders: [{
test: /\.js$/,
loader: 'babel'
}]
}
};