Skip to content

Commit

Permalink
v. 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lopatnov committed Dec 7, 2019
1 parent 6c9a00a commit 7efac25
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
11 changes: 8 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lopatnov/rollup-plugin-uglify",
"version": "1.0.1",
"version": "1.0.2",
"description": "Rollup plugin. Javascript code minifier",
"author": "lopatnov",
"license": "Apache-2.0",
Expand All @@ -22,12 +22,10 @@
"build": "rollup -c",
"watch": "rollup -cw",
"test": "jest",
"prepare": "npm i --no-save --no-package-lock uglify-js",
"configure-npm": "node ./set-registry.js -s https://registry.npmjs.org",
"configure-gpr": "node ./set-registry.js -s https://npm.pkg.github.com"
},
"dependencies": {
"uglify-js": "^3.7.1"
},
"files": [
"dist"
],
Expand All @@ -46,5 +44,8 @@
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
},
"peerDependencies": {
"uglify-js": "^3.7.1"
}
}
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default
}
],
external: [
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.devDependencies || {}),
...Object.keys(pkg.peerDependencies || {})
],

Expand Down

0 comments on commit 7efac25

Please sign in to comment.