Skip to content

Commit

Permalink
fix(dependency): upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
zack9433 committed Aug 29, 2016
1 parent 586552b commit 045df60
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
25 changes: 12 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
},
"devDependencies": {
"angular-mocks": "~1.5.0",
"autoprefixer": "~6.3.7",
"autoprefixer": "^6.4.0",
"babel-core": "^6.0.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.0.0",
Expand All @@ -40,10 +40,10 @@
"babel-preset-es2015": "^6.9.0",
"chai": "~3.5.0",
"commitizen": "^2.8.0",
"css-loader": "~0.23.1",
"css-loader": "^0.24.0",
"cucumber": "~0.7.0",
"cz-conventional-changelog": "^1.1.5",
"eslint": "^2.0.0",
"eslint": "^3.3.0",
"eslint-loader": "^1.3.0",
"expose-loader": "~0.7.1",
"extract-text-webpack-plugin": "^2.0.0-beta.3",
Expand All @@ -52,22 +52,22 @@
"html-webpack-plugin": "~2.22.0",
"istanbul": "~0.4.2",
"json-loader": "~0.5.4",
"karma": "~0.13.19",
"karma": "~1.2.0",
"karma-chai-plugins": "~0.7.0",
"karma-chrome-launcher": "~1.0.1",
"karma-chrome-launcher": "~2.0.0",
"karma-coverage": "~1.1.0",
"karma-mocha": "~1.1.1",
"karma-sourcemap-loader": "~0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "~1.7.0",
"lodash-webpack-plugin": "^0.9.2",
"mocha": "~2.5.3",
"karma-webpack": "~1.8.0",
"lodash-webpack-plugin": "^0.10.0",
"mocha": "~3.0.0",
"ng-annotate-loader": "0.1.0",
"ng-cache-loader": "0.0.15",
"node-bourbon": "~4.2.3",
"node-sass": "~3.8.0",
"opt-cli": "~1.5.1",
"postcss-loader": "~0.9.1",
"postcss-loader": "^0.11.0",
"progress-bar-webpack-plugin": "^1.9.0",
"protractor": "~2.5.1",
"raw-loader": "~0.5.1",
"sanji-openapi-mock": "github:sanji-io/sanji-openapi-mockserver",
Expand All @@ -76,8 +76,7 @@
"style-loader": "~0.13.0",
"url-loader": "~0.5.7",
"webpack": "^2.1.0-beta.20",
"webpack-dev-server": "^2.1.0-beta.0",
"webpack-notifier": "~1.3.0"
"webpack-dev-server": "^2.1.0-beta.0"
},
"repository": {
"type": "git",
Expand All @@ -92,6 +91,6 @@
"license": "MIT",
"homepage": "https://github.com/Sanji-IO/sanji-cellular-ui",
"dependencies": {
"sanji-core-ui": "~1.16.0"
"sanji-core-ui": "~1.17.0"
}
}
2 changes: 2 additions & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

var path = require('path');
var webpack = require('webpack');
var ProgressBarPlugin = require('progress-bar-webpack-plugin');
var NODE_ENV = process.env.NODE_ENV;
var BASE_PATH = process.env.BASE_PATH;
var nodeRoot = path.join(__dirname, 'node_modules');
Expand Down Expand Up @@ -37,6 +38,7 @@ var config = {
noParse: []
},
plugins: [
new ProgressBarPlugin(),
new webpack.DefinePlugin({
__TEST__: 'test' === NODE_ENV,
__DEV__: 'development' === NODE_ENV,
Expand Down
2 changes: 0 additions & 2 deletions webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

var webpack = require('webpack');
var autoprefixer = require('autoprefixer');
var WebpackNotifierPlugin = require('webpack-notifier');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var bourbon = require('node-bourbon').includePaths;
var config = require('./webpack.config.js');
Expand Down Expand Up @@ -33,7 +32,6 @@ config.postcss = [ autoprefixer({ browsers: ['last 2 versions'] }) ];

config.plugins.push(
new webpack.HotModuleReplacementPlugin(),
new WebpackNotifierPlugin({title: 'Webpack'}),
new HtmlWebpackPlugin({
template: 'index.html',
hash: true
Expand Down

0 comments on commit 045df60

Please sign in to comment.