package dependency cleanup (#330)

* update npm packages.  babel 7, redux 4, etc

* remove obsolete babel config file

* use correct icons
This commit is contained in:
Bruce Martin
2018-10-15 17:36:13 -07:00
committed by Colin Megill
parent 65f5244ff7
commit 6b0aafd27c
12 changed files with 3673 additions and 4352 deletions

View File

@@ -1,6 +1,5 @@
// jshint esversion: 6
const path = require("path");
const autoprefixer = require("autoprefixer");
const webpack = require("webpack");
const HtmlWebpackPlugin = require("html-webpack-plugin");
@@ -39,12 +38,6 @@ module.exports = {
importLoaders: 1,
localIdentName: "[name]__[local]___[hash:base64:5]"
}
},
{
loader: "postcss-loader",
options: {
plugins: () => []
}
}
]
},

View File

@@ -1,6 +1,5 @@
// jshint esversion: 6
const path = require("path");
const autoprefixer = require("autoprefixer");
const webpack = require("webpack");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
@@ -45,14 +44,6 @@ module.exports = {
importLoaders: 1,
localIdentName: "[name]__[local]___[hash:base64:5]"
}
},
{
loader: "postcss-loader",
options: {
plugins: function() {
return [];
}
}
}
]
},
@@ -104,5 +95,9 @@ module.exports = {
cacheId: "cellxgene",
filename: "service-worker.js"
})
]
],
performance: {
maxEntrypointSize: 750000,
maxAssetSize: 750000
}
};