Skip to content

Commit

Permalink
Updated packages to latest versions. Replaced UglifyJS with TerserJS.
Browse files Browse the repository at this point in the history
  • Loading branch information
vireshshah committed Aug 23, 2019
1 parent cb92dee commit c1799af
Show file tree
Hide file tree
Showing 6 changed files with 1,781 additions and 1,537 deletions.
43 changes: 25 additions & 18 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,21 +1,28 @@
{
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-json-strings",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
"@babel/plugin-proposal-function-sent",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-throw-expressions"
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": true
}
}
]
],
"plugins": [
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-json-strings",
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
"@babel/plugin-proposal-function-sent",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-numeric-separator",
"@babel/plugin-proposal-throw-expressions"
]
}
Loading

0 comments on commit c1799af

Please sign in to comment.