1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-04-25 19:50:32 +02:00

Merge pull request #715 from koalyptus/greenkeeper/uglifyjs-webpack-plugin-2.1.3

Update uglifyjs-webpack-plugin to the latest version 🚀
This commit is contained in:
koalyptus 2019-06-06 11:28:09 +10:00 committed by GitHub
commit 2e1af5efb3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 742 additions and 610 deletions

4
dist/starter.html vendored
View file

@ -1,10 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>tablefilter v0.6.92 - Starter</title>
<title>tablefilter v0.6.93 - Starter</title>
</head>
<body>
<h1>tablefilter v0.6.92</h1>
<h1>tablefilter v0.6.93</h1>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

1322
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{
"name": "tablefilter",
"version": "0.6.92",
"version": "0.6.93",
"description": "A Javascript library making HTML tables filterable and a bit more",
"license": "MIT",
"author": {
@ -45,7 +45,7 @@
"babel-eslint": "10.0.0",
"babel-loader": "^8.0.2",
"babel-preset-env": "1.7.0",
"clean-webpack-plugin": "^2.0.1",
"clean-webpack-plugin": "^3.0.0",
"codecov": "3.4.0",
"diacritics": "1.3.0",
"esdoc": "1.1.0",
@ -66,7 +66,7 @@
"string-replace-webpack-plugin": "^0.1.3",
"stylus": "^0.54.5",
"sugar-date": "2.0.6",
"uglifyjs-webpack-plugin": "2.1.2",
"uglifyjs-webpack-plugin": "2.1.3",
"webpack": "^4.0.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.11"

View file

@ -1,6 +1,6 @@
const webpack = require('webpack');
const path = require('path');
const Clean = require('clean-webpack-plugin');
const {CleanWebpackPlugin} = require('clean-webpack-plugin');
const StringReplacePlugin = require('string-replace-webpack-plugin');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const fs = require('fs');
@ -59,7 +59,7 @@ module.exports = {
sourceMap: true,
uglifyOptions: {
beautify: false,
compress: {warnings: false},
warnings: false,
comments: false,
keep_fnames: true
}
@ -67,7 +67,7 @@ module.exports = {
]
},
plugins: [
new Clean({
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: [path.join(process.cwd(), 'dist')]
}),
new webpack.optimize.AggressiveMergingPlugin(),

View file

@ -1,7 +1,7 @@
const webpack = require('webpack');
const webpackConfig = require('./webpack.config.js');
const path = require('path');
const Clean = require('clean-webpack-plugin');
const {CleanWebpackPlugin} = require('clean-webpack-plugin');
module.exports = {
mode: 'development',
@ -23,7 +23,7 @@ module.exports = {
},
devtool: 'source-map',
plugins: [
new Clean({
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: [path.join(process.cwd(), 'dist')]
}),
new webpack.LoaderOptionsPlugin({