Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .changeset/steady-node-runtime.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@inflowpayai/inflow': minor
---

Require Node.js 24.15.0 or newer for the command-line package, development builds, and continuous integration.
9 changes: 2 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ permissions:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [22, 24]
steps:
- uses: actions/checkout@v5
with:
Expand All @@ -25,7 +21,7 @@ jobs:

- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
node-version: 24.15.0
cache: pnpm

- name: Install
Expand All @@ -41,7 +37,6 @@ jobs:
run: pnpm test

- name: Upload coverage to Codecov
if: matrix.node == 22
uses: codecov/codecov-action@v5
with:
use_oidc: true
Expand All @@ -54,5 +49,5 @@ jobs:
run: pnpm build

- name: Publish dry-run
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && matrix.node == 22
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: pnpm --filter @inflowpayai/inflow publish --dry-run --no-git-checks
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- uses: actions/setup-node@v6
with:
node-version: 24
node-version: 24.15.0
cache: pnpm

- name: Upgrade npm for Trusted Publishing
Expand Down
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22
24.15.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ In every case the plugin bundles the skill and the `inflow` MCP server (`.mcp.js

## Development

This is a pnpm + Turborepo monorepo. Node >= 22 required.
This is a pnpm + Turborepo monorepo. Node >= 24.15.0 required.

```bash
pnpm install
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"homepage": "https://github.com/inflowpayai/inflow-cli#readme",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
"node": ">=24.15.0"
},
"packageManager": "pnpm@11.1.3",
"scripts": {
Expand All @@ -38,7 +38,7 @@
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.0",
"@types/node": "^22.0.0",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"clean": "rm -rf dist .turbo"
},
"engines": {
"node": ">=22.0.0"
"node": ">=24.15.0"
},
"publishConfig": {
"access": "public",
Expand Down Expand Up @@ -54,7 +54,7 @@
},
"devDependencies": {
"@inflowpayai/inflow-core": "workspace:^",
"@types/node": "^22.0.0",
"@types/node": "^24.0.0",
"@types/react": "^18.3.28",
"@types/update-notifier": "^6.0.8",
"@vitest/coverage-v8": "^2.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@ export default defineConfig({
platform: 'node',
splitting: false,
sourcemap: false,
target: 'node22',
target: 'node24',
});
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"clean": "rm -rf dist .turbo"
},
"engines": {
"node": ">=22.0.0"
"node": ">=24.15.0"
},
"repository": {
"type": "git",
Expand All @@ -59,7 +59,7 @@
"@inflowpayai/x402": "^0.8.0",
"@inflowpayai/x402-buyer": "^0.7.0",
"@x402/core": "^2.12.0",
"@types/node": "^22.0.0",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^2.1.0"
}
}
2 changes: 1 addition & 1 deletion packages/core/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default defineConfig({
entry: ['src/index.ts'],
format: ['esm'],
platform: 'node',
target: 'node22',
target: 'node24',
outDir: 'dist',
dts: true,
clean: true,
Expand Down
Loading
Loading