mirror of
https://github.com/icewind1991/nextcloud-version-matrix.git
synced 2026-08-02 15:54:45 +02:00
feat: Update dependencies to latest version and refactor action to ES6 module
Signed-off-by: David Dreschner <github-2017@dreschner.net>
This commit is contained in:
parent
0dbaa1807b
commit
25ddaceda2
9 changed files with 60070 additions and 43159 deletions
20
package.json
20
package.json
|
|
@ -1,24 +1,26 @@
|
|||
{
|
||||
"name": "nextcloud-version-matrix",
|
||||
"type": "module",
|
||||
"version": "1.0.0",
|
||||
"description": "Generate nextcloud version matrix for an app",
|
||||
"main": "src/action.js",
|
||||
"main": "src/action.mjs",
|
||||
"scripts": {
|
||||
"build": "ncc build src/action.js -o dist",
|
||||
"test": "INPUT_FILENAME=.github/workflows/info.xml node src/action.js"
|
||||
"build": "ncc build src/action.mjs -o dist",
|
||||
"test": "INPUT_FILENAME=.github/workflows/info.xml node src/action.mjs"
|
||||
},
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@actions/core": "^1.10.1",
|
||||
"@actions/http-client": "^2.2.0",
|
||||
"@actions/core": "^3.0.1",
|
||||
"@actions/exec": "^3.0.0",
|
||||
"@actions/http-client": "^4.0.1",
|
||||
"@xmldom/xmldom": "^0.9.10",
|
||||
"deep-equal": "^2.2.3",
|
||||
"url-exist": "^2.0.2",
|
||||
"xmldom": "^0.6.0",
|
||||
"xpath": "0.0.27"
|
||||
"url-exist": "^3.0.1",
|
||||
"xpath": "^0.0.34"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vercel/ncc": "^0.38.1"
|
||||
"@vercel/ncc": "^0.44.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue