Skip to content

Commit

Permalink
Feature :: Update dependencies (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
edlb authored Jan 7, 2019
1 parent 464c082 commit 1dfcbd2
Show file tree
Hide file tree
Showing 3 changed files with 593 additions and 392 deletions.
29 changes: 14 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
{
"dependencies": {
"del-cli": "^1.1.0",
"lodash": "^4.17.4",
"node-fetch": "^1.7.3",
"rollup": "^0.54.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-executable": "^1.1.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-uglify": "^2.0.1",
"spawn-sync": "^1.0.15",
"uglify-es": "^3.3.7",
"yargs": "^10.1.1"
"lodash": "^4.17.11",
"node-fetch": "^2.3.0",
"rollup": "^1.0.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-executable": "^1.3.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^4.0.1",
"spawn-sync": "^2.0.0",
"yargs": "^12.0.5"
},
"description": "Git flow + GitHub PRs = <3",
"devDependencies": {
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.8.0"
"eslint-plugin-import": "^2.14.0"
},
"license": "MIT",
"main": "lib/releaseman",
Expand All @@ -29,7 +28,7 @@
},
"scripts": {
"lint": "eslint \"src/**/*.js\" \"*.js\"",
"postinstall": "del bin && rollup -c"
"postinstall": "del bin && rollup -c --silent"
},
"version": "0.7.1"
}
10 changes: 6 additions & 4 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ import commonjs from 'rollup-plugin-commonjs'
import executable from 'rollup-plugin-executable'
import json from 'rollup-plugin-json'
import nodeResolve from 'rollup-plugin-node-resolve'
import uglify from 'rollup-plugin-uglify'
import { minify } from 'uglify-es'
import { terser } from 'rollup-plugin-terser'

export default {
external: [
Expand All @@ -17,14 +16,17 @@ export default {
format: 'cjs'
},
plugins: [
json(),
json({
compact: true,
preferConst: true
}),
nodeResolve({
extensions: ['.js', '.json']
}),
commonjs({
extensions: ['.js', '.json']
}),
uglify({}, minify),
terser(),
executable()
]
}
Loading

0 comments on commit 1dfcbd2

Please sign in to comment.