Require Node.js 22+
CI / Lint (pull_request) Successful in 55s
CI / Test (pull_request) Successful in 1m59s
Release Drafter / Update release notes draft (pull_request) Successful in 3s

Needs a temporary env var for the tasks, until a larger dependency
update
This commit is contained in:
2026-07-26 14:42:59 +02:00
parent 9054821e52
commit eb74a5e6d1
4 changed files with 13 additions and 13 deletions
+6 -6
View File
@@ -14,11 +14,11 @@
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*",
"lint:hbs": "ember-template-lint .",
"lint:js": "eslint .",
"start": "ember serve",
"test": "ember test",
"start:local": "WEB3_PROVIDER_URL=http://localhost:8545 WEB3_CHAIN_ID=1337 WEB3_NETWORK_NAME='Hardhat Devchain' ember serve",
"build": "ember build --environment=production",
"build-prod": "rm -rf release/* && ember build -prod --output-path release",
"start": "NODE_OPTIONS=--openssl-legacy-provider ember serve",
"test": "NODE_OPTIONS=--openssl-legacy-provider ember test",
"start:local": "WEB3_PROVIDER_URL=http://localhost:8545 WEB3_CHAIN_ID=1337 WEB3_NETWORK_NAME='Hardhat Devchain' NODE_OPTIONS=--openssl-legacy-provider ember serve",
"build": "NODE_OPTIONS=--openssl-legacy-provider ember build --environment=production",
"build-prod": "rm -rf release/* && NODE_OPTIONS=--openssl-legacy-provider ember build -prod --output-path release",
"preversion": "npm test",
"version": "npm run build-prod && git add release/",
"deploy": "git push 5apps master"
@@ -76,7 +76,7 @@
"web3-utils": "^1.7.3"
},
"engines": {
"node": ">= 14"
"node": ">= 22"
},
"ember": {
"edition": "octane"