Skip to content

Commit 39a2177

Browse files
committed
fix: use only Node.js 20.x and add type: module for ESLint
- Remove Node.js 18.x from CI matrix - Add type: module to package.json for ESLint config
1 parent 51fd763 commit 39a2177

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [18.x, 20.x]
15+
node-version: [20.x]
1616

1717
steps:
1818
- uses: actions/checkout@v4

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"name": "@superdapp/agents",
33
"version": "1.0.2",
44
"description": "SuperDapp AI Agents SDK and CLI for Node.js/TypeScript",
5+
"type": "module",
56
"main": "dist/index.js",
67
"types": "dist/index.d.ts",
78
"bin": {
@@ -78,4 +79,4 @@
7879
"url": "https://github.com/SuperDappAI/superdapp-js/issues"
7980
},
8081
"homepage": "https://github.com/SuperDappAI/superdapp-js#readme"
81-
}
82+
}

0 commit comments

Comments
 (0)