Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
note that Rollup's version range now uses `^` instead of `~`; seems like
they fairly reliably adhere to proper semantic versioning, so being more
liberal here reduces our gatekeeper burden without it being too risky
  • Loading branch information
FND committed Mar 15, 2019
1 parent 1d87617 commit a2741b9
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 14 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ faucet-pipeline-js version history
==================================


v2.0.1
------

_2019-03-15_

maintenance release to update dependencies; no relevant changes


v2.0.0
------

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "faucet-pipeline-js",
"version": "2.0.0",
"version": "2.0.1",
"description": "JavaScript module bundling for faucet-pipeline",
"author": "FND",
"contributors": [
Expand All @@ -27,9 +27,9 @@
},
"dependencies": {
"faucet-pipeline-core": "^1.2.0",
"rollup": "~1.2.2",
"rollup": "^1.6.0",
"rollup-plugin-cleanup": "~3.1.1",
"rollup-plugin-commonjs": "~9.2.0",
"rollup-plugin-commonjs": "~9.2.1",
"rollup-plugin-node-resolve": "~4.0.1"
},
"devDependencies": {
Expand All @@ -39,7 +39,7 @@
"faucet-pipeline-typescript": "file:pkg/faucet-pipeline-typescript",
"faucet-pipeline-jsmin": "file:pkg/faucet-pipeline-jsmin",
"json-diff": "^0.5.4",
"mocha": "^6.0.1",
"mocha": "^6.0.2",
"npm-run-all": "^4.1.5",
"release-util-fnd": "^1.1.1"
}
Expand Down
8 changes: 4 additions & 4 deletions pkg/faucet-pipeline-esnext/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "faucet-pipeline-esnext",
"version": "2.0.0",
"version": "2.0.1",
"description": "ES6 and beyond for faucet-pipeline",
"author": "FND",
"license": "Apache-2.0",
Expand All @@ -13,9 +13,9 @@
"url": "https://github.com/faucet-pipeline/faucet-pipeline-js/issues"
},
"dependencies": {
"@babel/core": "~7.3.3",
"@babel/preset-env": "~7.3.1",
"faucet-pipeline-js": "2.0.0",
"@babel/core": "~7.3.4",
"@babel/preset-env": "~7.3.4",
"faucet-pipeline-js": "2.0.1",
"rollup-plugin-babel": "~4.3.2"
}
}
2 changes: 1 addition & 1 deletion pkg/faucet-pipeline-jsmin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "faucet-pipeline-jsmin",
"version": "2.0.0",
"version": "2.0.1",
"description": "JavaScript minification for faucet-pipeline",
"author": "FND",
"license": "Apache-2.0",
Expand Down
4 changes: 2 additions & 2 deletions pkg/faucet-pipeline-jsx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "faucet-pipeline-jsx",
"version": "2.0.0",
"version": "2.0.1",
"description": "JSX for faucet-pipeline",
"author": "FND",
"license": "Apache-2.0",
Expand All @@ -14,6 +14,6 @@
},
"dependencies": {
"@babel/plugin-transform-react-jsx": "~7.3.0",
"faucet-pipeline-esnext": "2.0.0"
"faucet-pipeline-esnext": "2.0.1"
}
}
6 changes: 3 additions & 3 deletions pkg/faucet-pipeline-typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "faucet-pipeline-typescript",
"version": "2.0.0",
"version": "2.0.1",
"description": "TypeScript for faucet-pipeline",
"author": "FND",
"contributors": [
Expand All @@ -16,8 +16,8 @@
"url": "https://github.com/faucet-pipeline/faucet-pipeline-js/issues"
},
"dependencies": {
"faucet-pipeline-js": "2.0.0",
"rollup-plugin-typescript2": "~0.19.2",
"faucet-pipeline-js": "2.0.1",
"rollup-plugin-typescript2": "~0.20.1",
"typescript": "~3.3.3333"
}
}

0 comments on commit a2741b9

Please sign in to comment.