Skip to content

Commit

Permalink
fix(package): upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
zack9433 committed Dec 19, 2016
1 parent 0e347a5 commit a39a164
Show file tree
Hide file tree
Showing 20 changed files with 102 additions and 58 deletions.
33 changes: 24 additions & 9 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,34 @@
},
"globals": {
"angular": true,
"FileSaver": true,
"sinon": true,
"expect": true,
"__DEV__": true,
"__TEST__": true,
"__RELEASE__": true,
"__BASE_PATH__": true
},
"rules": {
"indent": [ 2, 2 ],
"quotes": [ 2, "single", { "avoidEscape": true, "allowTemplateLiterals": true }],
"linebreak-style": [ 2, "unix" ],
"semi": [ 2, "always" ],
"indent": [
"error",
2,
{
"SwitchCase": 1
}
],
"quotes": [
2,
"single",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
],
"no-console": 0
}
}
}
13 changes: 5 additions & 8 deletions karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
// Karma configuration
'use strict';

var webpackConfig = require('./webpack.test');
var test = process.env.NODE_ENV === 'test';
var IS_TRAVIS = process.env.TRAVIS;
const webpackConfig = require('./webpack.test');
const test = process.env.NODE_ENV === 'test';
const IS_TRAVIS = process.env.TRAVIconst

module.exports = function(config) {
config.set({
Expand Down Expand Up @@ -43,15 +40,15 @@ module.exports = function(config) {

// list of files / patterns to load in the browser
files: [
'app/app.test.js'
'src/app.test.js'
],


// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
// run the bundle through the webpack and sourcemap plugins
preprocessors: {
'app/app.test.js': [ 'webpack', 'sourcemap' ]
'src/app.test.js': [ 'webpack', 'sourcemap' ]
},


Expand Down
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@
"babel-plugin-lodash": "^3.2.4",
"babel-preset-es2015": "^6.9.0",
"codecov.io": "^0.1.6",
"commitizen": "^2.8.0",
"cross-env": "~2.0.1",
"css-loader": "^0.24.0",
"commitizen": "^2.9.0",
"cross-env": "^3.1.3",
"css-loader": "^0.26.0",
"cz-conventional-changelog": "^1.1.5",
"eslint": "^3.3.0",
"eslint-loader": "^1.3.0",
"eslint": "^3.12.0",
"eslint-loader": "^1.6.0",
"file-loader": "~0.9.0",
"ghooks": "^1.2.0",
"html-webpack-plugin": "~2.22.0",
Expand All @@ -54,26 +54,26 @@
"karma-coverage": "~1.1.0",
"karma-mocha": "~1.1.1",
"karma-sourcemap-loader": "~0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-spec-reporter": "~0.0.26",
"karma-webpack": "~1.8.0",
"lodash-webpack-plugin": "^0.10.0",
"mocha": "~3.0.0",
"mocha": "^3.2.0",
"ng-annotate-loader": "~0.1.0",
"ng-cache-loader": "~0.0.15",
"node-bourbon": "~4.2.3",
"node-sass": "~3.10.0",
"node-sass": "~4.1.0",
"opt-cli": "~1.5.1",
"postcss-loader": "^0.11.0",
"progress-bar-webpack-plugin": "^1.9.0",
"raw-loader": "~0.5.1",
"rimraf": "~2.5.4",
"sass-loader": "~4.0.0",
"semantic-release": "^4.3.5",
"rimraf": "^2.5.4",
"sass-loader": "~4.1.0",
"semantic-release": "^6.3.2",
"style-loader": "~0.13.0",
"toastr": "~2.1.2",
"url-loader": "~0.5.7",
"webpack": "^2.1.0-beta.24",
"webpack-dev-server": "^2.1.0-beta.0"
"webpack": "^2.1.0-beta.28",
"webpack-dev-server": "^2.1.0-beta.12"
},
"repository": {
"type": "git",
Expand All @@ -89,8 +89,8 @@
"homepage": "https://github.com/Sanji-IO/sanji-auth-ui",
"dependencies": {
"angular": "~1.5.0",
"angular-http-auth": "~1.3.0",
"angular-http-auth": "~1.5.0",
"angular-storage": "~0.0.15",
"sanji-rest-ui": "~1.3.6"
"sanji-rest-ui": "~1.3.14"
}
}
}
4 changes: 1 addition & 3 deletions server/dev-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ const WebpackDevServer = require('webpack-dev-server');
const config = require('../webpack.dev');
new WebpackDevServer(webpack(config), {
historyApiFallback: true,
stats: {
colors: true,
}
stats: 'minimal'
})
.listen(8080, 'localhost', function(err) {
if (err) {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion webpack.build.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ config.externals = {
};

config.module.rules = [
{test: /\.js$/, loader: 'ng-annotate', exclude: /(node_modules)/, enforce: 'post'},
{test: /\.js$/, use: 'ng-annotate-loader', exclude: /(node_modules)/, enforce: 'post'},
].concat(config.module.rules);

config.plugins.push(
Expand Down
17 changes: 8 additions & 9 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const ProgressBarPlugin = require('progress-bar-webpack-plugin');
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin');
const NODE_ENV = process.env.NODE_ENV;
const nodeRoot = path.join(__dirname, 'node_modules');
const appRoot = path.join(__dirname, 'app');
const appRoot = path.join(__dirname, 'src');
const config = {
context: appRoot,
output: {
Expand All @@ -22,20 +22,19 @@ const config = {
},
module: {
rules: [
{test: /\.js$/, loader: 'eslint', exclude: /node_modules/, enforce: 'pre'},
{test: /\.js$/, loader: 'babel?cacheDirectory', exclude: /(node_modules)/},
{ test: /\.html$/, loader: 'ng-cache?prefix=[dir]/[dir]', exclude: [/node_modules/, path.join(__dirname, '/app/index.html')] }
{test: /\.js$/, use: 'eslint-loader', exclude: /node_modules/, enforce: 'pre'},
{test: /\.js$/, use: 'babel-loader?cacheDirectory', exclude: /(node_modules)/},
{ test: /\.html$/, use: 'ng-cache-loader?prefix=[dir]/[dir]', exclude: [/node_modules/, path.join(__dirname, '/src/index.html')] }
]
},
plugins: [
new ProgressBarPlugin(),
new LodashModuleReplacementPlugin,
new webpack.DefinePlugin({
__TEST__: 'test' === NODE_ENV,
__DEV__: 'development' === NODE_ENV,
__RELEASE__: 'production' === NODE_ENV
}),
new webpack.NoErrorsPlugin()
'process.env': {
'NODE_ENV': JSON.stringify(NODE_ENV || 'development')
}
})
]
};

Expand Down
33 changes: 26 additions & 7 deletions webpack.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ const HtmlWebpackPlugin = require('html-webpack-plugin');
const bourbon = require('node-bourbon').includePaths;
const config = require('./webpack.config.js');

config.devtool = 'eval';
config.devtool = 'cheap-module-eval-source-map';
config.performance = {
hints: false
};
config.entry = {
'sanji-ui': [
'webpack/hot/dev-server',
Expand All @@ -13,12 +16,28 @@ config.entry = {
]
};
config.module.rules = [
{test: /\.js$/, loader: 'ng-annotate', exclude: /(node_modules)/, enforce: 'post'},
{test: /\.scss/, loader: 'style!css!postcss!sass?includePaths[]=' + bourbon},
{test: /\.css$/, loader: 'style!css!postcss?browsers=last 2 versions'},
{test: /\.(png|jpg|gif|jpeg)$/, loader: 'url-loader?limit=8192', exclude: /node_modules/},
{test: /\.(woff|woff2)$/, loader: 'url?limit=10000&minetype=application/font-woff', exclude: /node_modules/},
{test: /\.(ttf|eot|svg)$/, loader: 'file', exclude: /node_modules/}
{test: /\.js$/, use: 'ng-annotate-loader', exclude: /(node_modules)/, enforce: 'post'},
{
test: /\.scss/,
use: ['style-loader', 'css-loader', 'postcss-loader', {
loader: 'sass-loader',
options: {
includePaths: bourbon
}
}]
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader', {
loader: 'postcss-loader',
options: {
browsers: 'last 2 versions'
}
}]
},
{test: /\.(png|jpg|gif|jpeg)$/, use: 'url-loader?limit=8192', exclude: /node_modules/},
{test: /\.(woff|woff2)$/, use: 'url-loader?limit=10000&minetype=application/font-woff', exclude: /node_modules/},
{test: /\.(ttf|eot|svg)$/, use: 'file-loader', exclude: /node_modules/}
].concat(config.module.rules);

config.plugins.push(
Expand Down
26 changes: 21 additions & 5 deletions webpack.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,27 @@ config.entry = {};
config.output = {};

config.module.rules = [
{test: /\.scss/, loader: 'style!css!postcss!sass?includePaths[]=' + bourbon},
{test: /\.css$/, loader: 'style!css!postcss'},
{test: /\.(png|jpg|gif|jpeg)$/, loader: 'url-loader?limit=8192'},
{test: /\.(woff|woff2)$/, loader: 'url?limit=10000&minetype=application/font-woff'},
{test: /\.(ttf|eot|svg)$/, loader: 'file'}
{
test: /\.scss/,
use: ['style-loader', 'css-loader', 'postcss-loader', {
loader: 'sass-loader',
options: {
includePaths: bourbon
}
}]
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader', {
loader: 'postcss-loader',
options: {
browsers: 'last 2 versions'
}
}]
},
{test: /\.(png|jpg|gif|jpeg)$/, use: 'url-loader?limit=8192'},
{test: /\.(woff|woff2)$/, use: 'url-loader?limit=10000&minetype=application/font-woff'},
{test: /\.(ttf|eot|svg)$/, use: 'file-loader'}
].concat(config.module.rules);

config.plugins.push(
Expand Down

0 comments on commit a39a164

Please sign in to comment.