Skip to content

Commit bd439f7

Browse files
committed
updated dependencies
1 parent 59b27cc commit bd439f7

File tree

9 files changed

+43
-32
lines changed

9 files changed

+43
-32
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ jobs:
77
strategy:
88
matrix:
99
node-version:
10-
- 14.x
1110
- 18.x
12-
- 19.x
11+
- 21.x
1312
steps:
1413
- uses: actions/checkout@v3
1514
- uses: actions/setup-node@v3

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@ faucet-pipeline-js version history
22
==================================
33

44

5+
v3.0.1
6+
------
7+
8+
_2023-11-09_
9+
10+
maintenance release to update dependencies; no significant changes
11+
12+
513
v3.0.0
614
------
715

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@ Contributing
1919
Release Process
2020
---------------
2121

22-
1. ensure dependencies are up to date (→ `./bin/update-pkg`)
22+
1. ensure dependencies are up to date (→ `./bin/update-pkg`, then `npm install`)
2323
2. ensure all meta-packages use the same version number (i.e.
2424
`pkg/*/package.json`, both WRT `version` field and faucet-js `dependencies`)
25-
3. `./bin/release`, skipping dependencies' installation (due to meta-packages;
25+
3. update `CHANGELOG.md`
26+
4. `./bin/release`, skipping dependencies' installation (due to meta-packages;
2627
thus the manual first step)
2728

2829

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "faucet-pipeline-js",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "JavaScript module bundling for faucet-pipeline",
55
"author": "FND",
66
"contributors": [
@@ -26,10 +26,10 @@
2626
"node": ">=14"
2727
},
2828
"dependencies": {
29-
"@rollup/plugin-commonjs": "~24.0.0",
30-
"@rollup/plugin-node-resolve": "~15.0.1",
29+
"@rollup/plugin-commonjs": "~25.0.7",
30+
"@rollup/plugin-node-resolve": "~15.2.3",
3131
"faucet-pipeline-core": "^2.0.0",
32-
"rollup": "^3.10.0",
32+
"rollup": "^4.3.0",
3333
"rollup-plugin-cleanup": "~3.2.1"
3434
},
3535
"devDependencies": {
@@ -38,7 +38,7 @@
3838
"faucet-pipeline-jsmin": "file:pkg/faucet-pipeline-jsmin",
3939
"faucet-pipeline-jsx": "file:pkg/faucet-pipeline-jsx",
4040
"faucet-pipeline-typescript": "file:pkg/faucet-pipeline-typescript",
41-
"json-diff": "^1.0.0",
41+
"json-diff": "^1.0.6",
4242
"mocha": "^10.2.0",
4343
"npm-run-all": "^4.1.5",
4444
"release-util-fnd": "^3.0.0"
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": "3.0.0",
3+
"version": "3.0.1",
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.20.12",
17-
"@babel/preset-env": "~7.20.2",
18-
"@rollup/plugin-babel": "~6.0.3",
19-
"faucet-pipeline-js": "3.0.0"
16+
"@babel/core": "~7.23.3",
17+
"@babel/preset-env": "~7.23.3",
18+
"@rollup/plugin-babel": "~6.0.4",
19+
"faucet-pipeline-js": "3.0.1"
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": "3.0.0",
3+
"version": "3.0.1",
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": "^0.3.0"
16+
"@rollup/plugin-terser": "^0.4.4"
1717
}
1818
}

pkg/faucet-pipeline-jsx/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "faucet-pipeline-jsx",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "JSX for faucet-pipeline",
55
"author": "FND",
66
"license": "Apache-2.0",
@@ -13,7 +13,7 @@
1313
"url": "https://github.com/faucet-pipeline/faucet-pipeline-js/issues"
1414
},
1515
"dependencies": {
16-
"@babel/plugin-transform-react-jsx": "~7.20.7",
17-
"faucet-pipeline-esnext": "3.0.0"
16+
"@babel/plugin-transform-react-jsx": "~7.22.15",
17+
"faucet-pipeline-esnext": "3.0.1"
1818
}
1919
}

pkg/faucet-pipeline-typescript/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "faucet-pipeline-typescript",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "TypeScript for faucet-pipeline",
55
"author": "FND",
66
"contributors": [
@@ -16,9 +16,9 @@
1616
"url": "https://github.com/faucet-pipeline/faucet-pipeline-js/issues"
1717
},
1818
"dependencies": {
19-
"@rollup/plugin-typescript": "~11.0.0",
20-
"faucet-pipeline-js": "3.0.0",
21-
"tslib": "~2.4.1",
22-
"typescript": "~4.9.4"
19+
"@rollup/plugin-typescript": "~11.1.5",
20+
"faucet-pipeline-js": "3.0.1",
21+
"tslib": "~2.6.2",
22+
"typescript": "~5.2.2"
2323
}
2424
}

test/unit/test_bundling.js

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@ console.log("[\\u2026] ".concat(util)); // eslint-disable-line no-console
9393
filepath: path.resolve(FIXTURES_DIR, "./dist/bundle.js"),
9494
/* eslint-disable max-len */
9595
content: makeBundle(`
96-
var distExports = {};
97-
var dist = {
98-
get exports(){ return distExports; },
99-
set exports(v){ distExports = v; },
100-
};
96+
function getDefaultExportFromCjs (x) {
97+
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
98+
}
99+
100+
var dist = {exports: {}};
101101
102102
/* eslint-disable */
103103
@@ -110,13 +110,16 @@ var dist = {
110110
module.exports = MYLIB;
111111
}
112112
113-
}());
113+
}());$$$WHITESPACE$$$
114114
} (dist));
115115
116-
var MYLIB = distExports;
116+
var distExports = dist.exports;
117+
var MYLIB = /*@__PURE__*/getDefaultExportFromCjs(distExports);
117118
118119
console.log("[\\u2026] ".concat(MYLIB)); // eslint-disable-line no-console
119-
`)
120+
`).
121+
// fugly workaround for trailing whitespace being generated
122+
replace("$$$WHITESPACE$$$", " ")
120123
/* eslint-enable max-len */
121124
}]);
122125
});

0 commit comments

Comments
 (0)