Skip to content

Commit

Permalink
Update dependencies & cleanup configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
lepture committed May 11, 2016
1 parent b5ff586 commit 3065282
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 32 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "UI framework for mobile built with vue.",
"main": "src/index.js",
"scripts": {
"start": "NODE_ENV=development node server.js",
"start": "webpack-dev-server --inline --hot",
"build": "NODE_ENV=production webpack --progress --hide-modules",
"test": "echo \"Error: no test specified\" && exit 1"
},
Expand All @@ -25,13 +25,13 @@
"babel-loader": "^6.1.0",
"babel-plugin-transform-runtime": "^6.1.4",
"babel-preset-es2015": "^6.1.4",
"babel-runtime": "^5.8.0",
"css-loader": "^0.21.0",
"extract-text-webpack-plugin": "^0.9.1",
"babel-runtime": "^6.6.1",
"css-loader": "^0.23.0",
"extract-text-webpack-plugin": "^1.0.1",
"postcss": "^5.0.14",
"postcss-custom-properties": "^5.0.0",
"postcss-import": "^7.1.0",
"postcss-loader": "^0.7.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.9.1",
"style-loader": "^0.13.0",
"vue": "^1.0.16",
"vue-hot-reload-api": "^1.3.2",
Expand Down
24 changes: 0 additions & 24 deletions server.js

This file was deleted.

6 changes: 4 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
var fs = require('fs')
var webpack = require('webpack')

var ExtractTextPlugin = require('extract-text-webpack-plugin')
Expand All @@ -17,7 +16,6 @@ var options = {
output: {
path: contentBase + '/assets',
filename: 'app.js',
contentBase: contentBase,
},

module: {
Expand Down Expand Up @@ -47,6 +45,10 @@ var options = {
]
},

devServer: {
path: contentBase + '/assets/_site',
},

devtool: 'source-map',
}

Expand Down

0 comments on commit 3065282

Please sign in to comment.