mirror of
https://github.com/docker/setup-qemu-action.git
synced 2026-06-03 18:59:00 +00:00
Merge pull request #284 from crazy-max/esbuild
ci / default (push) Failing after 9s
ci / main (tonistiigi/binfmt:latest, all) (push) Failing after 7s
ci / main (tonistiigi/binfmt:latest, arm64,riscv64,arm) (push) Failing after 6s
ci / main (tonistiigi/binfmt:master, all) (push) Failing after 5s
ci / main (tonistiigi/binfmt:master, arm64,riscv64,arm) (push) Failing after 3s
ci / error (push) Failing after 2s
ci / cache-image (false) (push) Failing after 1s
ci / cache-image (true) (push) Failing after 1s
ci / version (tonistiigi/binfmt:latest) (push) Failing after 1s
ci / version (tonistiigi/binfmt:master) (push) Failing after 1s
ci / version (tonistiigi/binfmt:qemu-v7.0.0) (push) Failing after 1s
codeql / analyze (push) Failing after 1s
test / test (push) Failing after 1s
validate / prepare (push) Failing after 1s
validate / validate (push) Has been skipped
zizmor / zizmor (push) Failing after 0s
ci / default (push) Failing after 9s
ci / main (tonistiigi/binfmt:latest, all) (push) Failing after 7s
ci / main (tonistiigi/binfmt:latest, arm64,riscv64,arm) (push) Failing after 6s
ci / main (tonistiigi/binfmt:master, all) (push) Failing after 5s
ci / main (tonistiigi/binfmt:master, arm64,riscv64,arm) (push) Failing after 3s
ci / error (push) Failing after 2s
ci / cache-image (false) (push) Failing after 1s
ci / cache-image (true) (push) Failing after 1s
ci / version (tonistiigi/binfmt:latest) (push) Failing after 1s
ci / version (tonistiigi/binfmt:master) (push) Failing after 1s
ci / version (tonistiigi/binfmt:qemu-v7.0.0) (push) Failing after 1s
codeql / analyze (push) Failing after 1s
test / test (push) Failing after 1s
validate / prepare (push) Failing after 1s
validate / validate (push) Has been skipped
zizmor / zizmor (push) Failing after 0s
replace ncc with esbuild for action bundling
This commit is contained in:
+2
-2
@@ -26,5 +26,5 @@ outputs:
|
||||
|
||||
runs:
|
||||
using: 'node24'
|
||||
main: 'dist/index.js'
|
||||
post: 'dist/index.js'
|
||||
main: 'dist/index.cjs'
|
||||
post: 'dist/index.cjs'
|
||||
|
||||
+136
File diff suppressed because one or more lines are too long
+7
File diff suppressed because one or more lines are too long
-16
File diff suppressed because one or more lines are too long
-1
File diff suppressed because one or more lines are too long
+4439
-968
File diff suppressed because it is too large
Load Diff
-3
@@ -1,3 +0,0 @@
|
||||
{
|
||||
"type": "module"
|
||||
}
|
||||
-1
File diff suppressed because one or more lines are too long
+5
-3
@@ -4,10 +4,11 @@
|
||||
"type": "module",
|
||||
"main": "src/main.ts",
|
||||
"scripts": {
|
||||
"build": "ncc build src/main.ts --source-map --minify --license licenses.txt",
|
||||
"build": "esbuild src/main.ts --bundle --platform=node --target=node24 --format=cjs --outfile=dist/index.cjs --sourcemap --minify && yarn run license",
|
||||
"lint": "eslint --max-warnings=0 .",
|
||||
"format": "eslint --fix .",
|
||||
"test": "vitest run"
|
||||
"test": "vitest run",
|
||||
"license": "generate-license-file --input package.json --output dist/licenses.txt --overwrite --ci --no-spinner --eol lf"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@@ -30,12 +31,13 @@
|
||||
"@types/node": "^24.11.0",
|
||||
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
||||
"@typescript-eslint/parser": "^8.56.1",
|
||||
"@vercel/ncc": "^0.38.4",
|
||||
"@vitest/coverage-v8": "^4.0.18",
|
||||
"@vitest/eslint-plugin": "^1.6.9",
|
||||
"esbuild": "^0.28.0",
|
||||
"eslint": "^9.39.3",
|
||||
"eslint-config-prettier": "^10.1.8",
|
||||
"eslint-plugin-prettier": "^5.5.5",
|
||||
"generate-license-file": "^4.1.1",
|
||||
"globals": "^17.3.0",
|
||||
"prettier": "^3.8.1",
|
||||
"typescript": "^5.9.3",
|
||||
|
||||
Reference in New Issue
Block a user