Skip to content

chore: bump node, pnpm and rollup #40

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@ jobs:
needs: list-examples
strategy:
matrix:
node-version: ["16", "18", "20.5.1"]
node-version: ["16", "18", "20.5.1", "22.12.0"]
example: ${{ fromJson(needs.list-examples.outputs.examples) }}
fail-fast: false
steps:
2 changes: 1 addition & 1 deletion .moon/tasks.yml
Original file line number Diff line number Diff line change
@@ -50,7 +50,7 @@ tasks:
- "build"

build:
command: "rollup -c rollup.config.ts --configPlugin typescript"
command: "rollup --configPlugin typescript --configImportAttributesKey with -c rollup.config.ts"
inputs:
- "@globs(sources)"
- "rollup.config.ts"
2 changes: 1 addition & 1 deletion .moon/toolchain.yml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ $schema: "https://moonrepo.dev/schemas/toolchain.json"
node:
packageManager: "pnpm"
pnpm:
version: "8.6.3"
version: "9.15.0"

dedupeOnLockfileChange: false
dependencyVersionFormat: "workspace"
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.16.0
22.12.0
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -5,15 +5,15 @@
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@moonrepo/cli": "^1.19.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"esbuild": "^0.17.16",
"esbuild": "^0.24.0",
"esbuild-register": "^3.4.2",
"eslint": "^7.32.0",
"eslint-import-resolver-typescript": "^3.5.5",
@@ -24,15 +24,15 @@
"lerna": "^6.6.1",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"rollup": "^4.4.1",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.0",
"rollup": "^4.28.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"ts-jest": "^29.1.0",
"tslib": "^2.5.0",
"typescript": "4.9.4"
},
"packageManager": "pnpm@8.6.3",
"packageManager": "pnpm@9.15.0",
"engines": {
"node": "18.16.0"
"node": "22.12.0"
}
}
2 changes: 1 addition & 1 deletion packages/benchmark.js-plugin/rollup.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { defineConfig } from "rollup";
import { declarationsPlugin, jsPlugins } from "../../rollup.options";
import pkg from "./package.json" assert { type: "json" };
import pkg from "./package.json" with { type: "json" };

const entrypoint = "src/index.ts";

2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@
"devDependencies": {
"@types/find-up": "^4.0.0",
"node-addon-api": "^5.1.0",
"node-gyp": "^9.3.1",
"node-gyp": "^11.0.0",
"openapi-typescript-codegen": "^0.23.0",
"prebuildify": "^5.0.1"
},
2 changes: 1 addition & 1 deletion packages/core/rollup.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { defineConfig } from "rollup";
import { declarationsPlugin, jsPlugins } from "../../rollup.options";
import pkg from "./package.json" with { type: "json" };

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

export default defineConfig([
2 changes: 1 addition & 1 deletion packages/tinybench-plugin/rollup.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { defineConfig } from "rollup";
import { declarationsPlugin, jsPlugins } from "../../rollup.options";
import pkg from "./package.json" assert { type: "json" };
import pkg from "./package.json" with { type: "json" };

const entrypoint = "src/index.ts";

2 changes: 1 addition & 1 deletion packages/vitest-plugin/rollup.config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { defineConfig } from "rollup";
import { declarationsPlugin, jsPlugins } from "../../rollup.options";
import pkg from "./package.json" assert { type: "json" };
import pkg from "./package.json" with { type: "json" };

export default defineConfig([
{
Loading
Loading