mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 09:23:13 +01:00
Move styleguide to actual app
This commit is contained in:
parent
2f5c70eceb
commit
4fe11a9a32
@ -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
0
webpack-gulpfile.js
Normal file
18
webpack.config.js
Normal file
18
webpack.config.js
Normal 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'
|
||||
}]
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user