We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bc0232 commit 0c6491eCopy full SHA for 0c6491e
.github/workflows/checks.yml
@@ -129,7 +129,7 @@ jobs:
129
"16",
130
"18",
131
"20",
132
- "22"
+ "22",
133
]
134
os: [ubuntu-latest, windows-latest]
135
runs-on: ${{ matrix.os }}
packages/integration-tests/utils/create-cjs-bundles.ts
@@ -74,7 +74,7 @@ export function createCjsBundles(
74
);
75
}
76
77
- if (NODE_MAJOR_VERSION >= 18 && plugins.length === 0 || plugins.includes("rollup4")) {
+ if ((NODE_MAJOR_VERSION >= 18 && plugins.length === 0) || plugins.includes("rollup4")) {
78
void rollup4
79
.rollup({
80
input: entrypoints,
0 commit comments