update dependencies (#1772)

* update dependencies

* fix action

* update

* update
This commit is contained in:
oblomov-dev 2025-02-19 19:57:28 -03:00 committed by GitHub
parent fbab24ee46
commit 120113f276
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 28 additions and 20 deletions

View File

@ -18,4 +18,13 @@ jobs:
- run: npm ci
- run: npm run auto_downport
- run: npm run auto_transpile
- run: npm run express
- run: npm run express &
- name: Check for errors
run: |
sleep 10
if ! curl -s http://localhost:3000 | grep -q "Error"; then
echo "No errors detected, stopping the workflow."
exit 0
else
echo "Errors detected, continuing the workflow."
fi

21
package-lock.json generated
View File

@ -9,15 +9,15 @@
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"npm-check-updates": "^17.1.13"
"npm-check-updates": "^17.1.14"
},
"devDependencies": {
"@abaplint/cli": "^2.113.86",
"@abaplint/database-sqlite": "^2.10.20",
"@abaplint/runtime": "^2.10.23",
"@abaplint/transpiler-cli": "^2.10.23",
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.5",
"@abaplint/cli": "^2.113.104",
"@abaplint/database-sqlite": "^2.10.24",
"@abaplint/runtime": "^2.10.24",
"@abaplint/transpiler-cli": "^2.10.24",
"@playwright/test": "^1.50.1",
"@types/node": "^22.13.4",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^12.0.2",
"express": "^4.21.2",
@ -29,11 +29,10 @@
}
},
"node_modules/@abaplint/cli": {
"version": "2.113.103",
"resolved": "https://registry.npmjs.org/@abaplint/cli/-/cli-2.113.103.tgz",
"integrity": "sha512-L5R0lNbef3eNsIFlU0DJpBbsYZi+Sq6ptcBkPV4jsEbj1Yk5lG5PNBN0OZYnQ4BcTeJ+CGNBqzcRxAXfB9CT7A==",
"version": "2.113.104",
"resolved": "https://registry.npmjs.org/@abaplint/cli/-/cli-2.113.104.tgz",
"integrity": "sha512-JFFqyBdy/B4vtfz32e74ZUFQEQFyiUKg8jdDrfNjJPSOBIeVjPZzW5YxIjfym6e4DZHViNW5ctFCx8KvNoXclA==",
"dev": true,
"license": "MIT",
"bin": {
"abaplint": "abaplint"
},

View File

@ -12,7 +12,7 @@
"rename": "npm ci && abaplint .github/abaplint/rename_test.jsonc --rename",
"express": "node node/srv/express.mjs",
"unit": "echo RUNNING && node output/index.mjs"
"unit": "echo RUNNING && node node/output/index.mjs"
},
"repository": {
@ -25,11 +25,11 @@
},
"homepage": "wwww.abap2UI5.org",
"devDependencies": {
"@abaplint/cli": "^2.113.86",
"@abaplint/database-sqlite": "^2.10.20",
"@abaplint/runtime": "^2.10.23",
"@abaplint/transpiler-cli": "^2.10.23",
"@types/node": "^22.10.5",
"@abaplint/cli": "^2.113.104",
"@abaplint/database-sqlite": "^2.10.24",
"@abaplint/runtime": "^2.10.24",
"@abaplint/transpiler-cli": "^2.10.24",
"@types/node": "^22.13.4",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^12.0.2",
"express": "^4.21.2",
@ -38,9 +38,9 @@
"web-encoding": "^1.1.5",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"@playwright/test": "^1.49.1"
"@playwright/test": "^1.50.1"
},
"dependencies": {
"npm-check-updates": "^17.1.13"
"npm-check-updates": "^17.1.14"
}
}