Skip to content

Commit fc8ee29

Browse files
committed
chore: bump node, pnpm and rollup
1 parent c8110bd commit fc8ee29

File tree

11 files changed

+10313
-11876
lines changed

11 files changed

+10313
-11876
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
needs: list-examples
4545
strategy:
4646
matrix:
47-
node-version: ["16", "18", "20.5.1"]
47+
node-version: ["16", "18", "20.5.1", "22.12.0"]
4848
example: ${{ fromJson(needs.list-examples.outputs.examples) }}
4949
fail-fast: false
5050
steps:

.moon/tasks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ tasks:
5050
- "build"
5151

5252
build:
53-
command: "rollup -c rollup.config.ts --configPlugin typescript"
53+
command: "rollup --configPlugin typescript --configImportAttributesKey with -c rollup.config.ts"
5454
inputs:
5555
- "@globs(sources)"
5656
- "rollup.config.ts"

.moon/toolchain.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ $schema: "https://moonrepo.dev/schemas/toolchain.json"
44
node:
55
packageManager: "pnpm"
66
pnpm:
7-
version: "8.6.3"
7+
version: "9.15.0"
88

99
dedupeOnLockfileChange: false
1010
dependencyVersionFormat: "workspace"

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.16.0
1+
22.12.0

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
"@commitlint/cli": "^17.5.1",
66
"@commitlint/config-conventional": "^17.4.4",
77
"@moonrepo/cli": "^1.19.3",
8-
"@rollup/plugin-commonjs": "^25.0.7",
9-
"@rollup/plugin-json": "^6.0.1",
10-
"@rollup/plugin-node-resolve": "^15.2.3",
11-
"@rollup/plugin-typescript": "^11.1.5",
8+
"@rollup/plugin-commonjs": "^28.0.1",
9+
"@rollup/plugin-json": "^6.1.0",
10+
"@rollup/plugin-node-resolve": "^15.3.0",
11+
"@rollup/plugin-typescript": "^12.1.1",
1212
"@types/jest": "^29.5.0",
1313
"@types/node": "^18.15.11",
1414
"@typescript-eslint/eslint-plugin": "^5.58.0",
1515
"@typescript-eslint/parser": "^5.58.0",
16-
"esbuild": "^0.17.16",
16+
"esbuild": "^0.24.0",
1717
"esbuild-register": "^3.4.2",
1818
"eslint": "^7.32.0",
1919
"eslint-import-resolver-typescript": "^3.5.5",
@@ -24,15 +24,15 @@
2424
"lerna": "^6.6.1",
2525
"prettier": "^2.8.7",
2626
"prettier-plugin-organize-imports": "^3.2.2",
27-
"rollup": "^4.4.1",
28-
"rollup-plugin-dts": "^6.1.0",
29-
"rollup-plugin-esbuild": "^6.1.0",
27+
"rollup": "^4.28.1",
28+
"rollup-plugin-dts": "^6.1.1",
29+
"rollup-plugin-esbuild": "^6.1.1",
3030
"ts-jest": "^29.1.0",
3131
"tslib": "^2.5.0",
3232
"typescript": "4.9.4"
3333
},
34-
"packageManager": "pnpm@8.6.3",
34+
"packageManager": "pnpm@9.15.0",
3535
"engines": {
36-
"node": "18.16.0"
36+
"node": "22.12.0"
3737
}
3838
}

packages/benchmark.js-plugin/rollup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { defineConfig } from "rollup";
22
import { declarationsPlugin, jsPlugins } from "../../rollup.options";
3-
import pkg from "./package.json" assert { type: "json" };
3+
import pkg from "./package.json" with { type: "json" };
44

55
const entrypoint = "src/index.ts";
66

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"devDependencies": {
2323
"@types/find-up": "^4.0.0",
2424
"node-addon-api": "^5.1.0",
25-
"node-gyp": "^9.3.1",
25+
"node-gyp": "^11.0.0",
2626
"openapi-typescript-codegen": "^0.23.0",
2727
"prebuildify": "^5.0.1"
2828
},

packages/core/rollup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { defineConfig } from "rollup";
22
import { declarationsPlugin, jsPlugins } from "../../rollup.options";
3+
import pkg from "./package.json" with { type: "json" };
34

4-
import pkg from "./package.json" assert { type: "json" };
55
const entrypoint = "src/index.ts";
66

77
export default defineConfig([

packages/tinybench-plugin/rollup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { defineConfig } from "rollup";
22
import { declarationsPlugin, jsPlugins } from "../../rollup.options";
3-
import pkg from "./package.json" assert { type: "json" };
3+
import pkg from "./package.json" with { type: "json" };
44

55
const entrypoint = "src/index.ts";
66

packages/vitest-plugin/rollup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { defineConfig } from "rollup";
22
import { declarationsPlugin, jsPlugins } from "../../rollup.options";
3-
import pkg from "./package.json" assert { type: "json" };
3+
import pkg from "./package.json" with { type: "json" };
44

55
export default defineConfig([
66
{

0 commit comments

Comments
 (0)