Skip to content

Commit fffcef0

Browse files
committed
updated dependencies
in the process, revised changelog
1 parent 5488487 commit fffcef0

File tree

6 files changed

+34
-24
lines changed

6 files changed

+34
-24
lines changed

CHANGELOG.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,22 @@ faucet-pipeline-js version history
22
==================================
33

44

5+
v2.0.7
6+
------
7+
8+
_2019-08-06_
9+
10+
notable changes for end users:
11+
12+
* fixed potential race condition in conjunction with adjacent plugins
13+
14+
515
v2.0.6
616
------
717

818
_2019-06-21_
919

10-
improvements for end users:
20+
notable changes for end users:
1121

1222
* fixed module resolution to prefer `jsnext:main` over `main` if present
1323

@@ -62,7 +72,7 @@ v2.0.0
6272

6373
_2019-02-18_
6474

65-
improvements for end users:
75+
notable changes for end users:
6676

6777
* extended compacting options
6878

@@ -101,7 +111,7 @@ improvements for end users:
101111
(while most functionality - namely anything but JSX - remains compatible for
102112
now, we no longer offer any guarantees in that regard)
103113

104-
improvements for developers:
114+
notable changes for developers:
105115

106116
* renamed configuration property for source maps: `sourcemap``sourcemaps`
107117

@@ -111,7 +121,7 @@ v1.1.1
111121

112122
_2018-11-29_
113123

114-
improvements for end users:
124+
notable changes for end users:
115125

116126
* fixed change detection in watch mode if multiple files were altered
117127
simultaneously
@@ -126,7 +136,7 @@ _2018-11-07_
126136

127137
no significant changes for end users
128138

129-
improvements for developers:
139+
notable changes for developers:
130140

131141
* added support for virtual bundles, using strings rather than files as entry
132142
point and not automatically writing bundles to disk (programmatic API only)

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "faucet-pipeline-js",
3-
"version": "2.0.6",
3+
"version": "2.0.7",
44
"description": "JavaScript module bundling for faucet-pipeline",
55
"author": "FND",
66
"contributors": [
@@ -26,11 +26,11 @@
2626
"node": ">=8"
2727
},
2828
"dependencies": {
29-
"faucet-pipeline-core": "^1.2.1",
30-
"rollup": "^1.15.6",
29+
"faucet-pipeline-core": "^1.2.2",
30+
"rollup": "^1.19.3",
3131
"rollup-plugin-cleanup": "~3.1.1",
32-
"rollup-plugin-commonjs": "~10.0.0",
33-
"rollup-plugin-node-resolve": "~5.0.3"
32+
"rollup-plugin-commonjs": "~10.0.2",
33+
"rollup-plugin-node-resolve": "~5.2.0"
3434
},
3535
"devDependencies": {
3636
"eslint-config-fnd-jsx": "^1.6.0",
@@ -39,7 +39,7 @@
3939
"faucet-pipeline-typescript": "file:pkg/faucet-pipeline-typescript",
4040
"faucet-pipeline-jsmin": "file:pkg/faucet-pipeline-jsmin",
4141
"json-diff": "^0.5.4",
42-
"mocha": "^6.1.4",
42+
"mocha": "^6.2.0",
4343
"npm-run-all": "^4.1.5",
4444
"release-util-fnd": "^1.1.1"
4545
}
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "faucet-pipeline-esnext",
3-
"version": "2.0.6",
3+
"version": "2.0.7",
44
"description": "ES6 and beyond for faucet-pipeline",
55
"author": "FND",
66
"license": "Apache-2.0",
@@ -13,9 +13,9 @@
1313
"url": "https://github.com/faucet-pipeline/faucet-pipeline-js/issues"
1414
},
1515
"dependencies": {
16-
"@babel/core": "~7.4.5",
17-
"@babel/preset-env": "~7.4.5",
18-
"faucet-pipeline-js": "2.0.6",
19-
"rollup-plugin-babel": "~4.3.2"
16+
"@babel/core": "~7.5.5",
17+
"@babel/preset-env": "~7.5.5",
18+
"faucet-pipeline-js": "2.0.7",
19+
"rollup-plugin-babel": "~4.3.3"
2020
}
2121
}

pkg/faucet-pipeline-jsmin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "faucet-pipeline-jsmin",
3-
"version": "2.0.6",
3+
"version": "2.0.7",
44
"description": "JavaScript minification for faucet-pipeline",
55
"author": "FND",
66
"license": "Apache-2.0",
@@ -13,6 +13,6 @@
1313
"url": "https://github.com/faucet-pipeline/faucet-pipeline-js/issues"
1414
},
1515
"dependencies": {
16-
"rollup-plugin-terser": "^5.0.0"
16+
"rollup-plugin-terser": "^5.1.1"
1717
}
1818
}

pkg/faucet-pipeline-jsx/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "faucet-pipeline-jsx",
3-
"version": "2.0.6",
3+
"version": "2.0.7",
44
"description": "JSX for faucet-pipeline",
55
"author": "FND",
66
"license": "Apache-2.0",
@@ -14,6 +14,6 @@
1414
},
1515
"dependencies": {
1616
"@babel/plugin-transform-react-jsx": "~7.3.0",
17-
"faucet-pipeline-esnext": "2.0.6"
17+
"faucet-pipeline-esnext": "2.0.7"
1818
}
1919
}

pkg/faucet-pipeline-typescript/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "faucet-pipeline-typescript",
3-
"version": "2.0.6",
3+
"version": "2.0.7",
44
"description": "TypeScript for faucet-pipeline",
55
"author": "FND",
66
"contributors": [
@@ -16,8 +16,8 @@
1616
"url": "https://github.com/faucet-pipeline/faucet-pipeline-js/issues"
1717
},
1818
"dependencies": {
19-
"faucet-pipeline-js": "2.0.6",
20-
"rollup-plugin-typescript2": "~0.21.2",
21-
"typescript": "~3.5.2"
19+
"faucet-pipeline-js": "2.0.7",
20+
"rollup-plugin-typescript2": "~0.22.1",
21+
"typescript": "~3.5.3"
2222
}
2323
}

0 commit comments

Comments
 (0)