-
-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use terser-webpack-plugin because uglifyjs-webpack-plugin doesn…
…'t support ES6+ anymore
- Loading branch information
Showing
14 changed files
with
2,458 additions
and
2,226 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
"use strict"; | ||
|
||
// bloody babel 7 requires to use ONLY babel.config.js and old convenient key in package.json or .babelrc ARE NOT SUPPORTED ANYMORE | ||
module.exports = function (api) { | ||
// bloody babel 7 requires this string to revalidate cache of config on env change | ||
api.env() | ||
return { | ||
"presets": [ | ||
"babel-preset-ts-node6-bluebird", | ||
], | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"name": "electron-webpack-eslint", | ||
"version": "3.0.0", | ||
"version": "4.0.0", | ||
"license": "MIT", | ||
"author": "Greg Holguin <simulatedgreg@gmail.com>", | ||
"files": [], | ||
"repository": "electron-userland/electron-webpack", | ||
"dependencies": { | ||
"babel-eslint": "^9.0.0", | ||
"eslint": "^5.4.0", | ||
"babel-eslint": "^10.0.1", | ||
"eslint": "^5.8.0", | ||
"eslint-friendly-formatter": "^4.0.1", | ||
"eslint-loader": "^2.1.0" | ||
"eslint-loader": "^2.1.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"name": "electron-webpack-js", | ||
"version": "2.2.0", | ||
"version": "2.3.0", | ||
"license": "MIT", | ||
"author": "Vladimir Krivosheev <develar@gmail.com>", | ||
"files": [], | ||
"repository": "electron-userland/electron-webpack", | ||
"dependencies": { | ||
"@babel/core": "^7.0.0", | ||
"babel-loader": "^8.0.0", | ||
"@babel/core": "^7.1.2", | ||
"babel-loader": "^8.0.4", | ||
"@babel/plugin-syntax-dynamic-import": "^7.0.0", | ||
"@babel/preset-env": "^7.0.0", | ||
"@babel/preset-env": "^7.1.0", | ||
"babel-plugin-component": "^1.1.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
{ | ||
"name": "electron-webpack-ts", | ||
"version": "2.1.1", | ||
"version": "3.0.0", | ||
"license": "MIT", | ||
"author": "Vladimir Krivosheev <develar@gmail.com>", | ||
"files": [], | ||
"repository": "electron-userland/electron-webpack", | ||
"dependencies": { | ||
"fork-ts-checker-webpack-plugin": "^0.4.9", | ||
"ts-loader": "^4.5.0" | ||
"fork-ts-checker-webpack-plugin": "^0.4.14", | ||
"ts-loader": "^5.3.0" | ||
}, | ||
"peerDependencies": { | ||
"typescript": "^3.0.0" | ||
"typescript": "^3.1.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.