mirror of
https://github.com/gradle/gradle-build-action.git
synced 2025-05-01 20:38:34 +02:00
Disable source-map-register
The included sourcemap-register.js file is triggering a high priority CodeQL warning, which can prevent users from adopting the action. Removing this sourcemap support for now, until this can be fixed upstream.
This commit is contained in:
parent
aeb3e0fcd7
commit
74a56b60ce
5 changed files with 3 additions and 5 deletions
|
@ -8,7 +8,7 @@
|
|||
"format": "prettier --write **/*.ts",
|
||||
"format-check": "prettier --check **/*.ts",
|
||||
"lint": "eslint src/**/*.ts",
|
||||
"compile": "ncc build src/main.ts --out dist/main --source-map && ncc build src/post.ts --out dist/post --source-map",
|
||||
"compile": "ncc build src/main.ts --out dist/main --source-map --no-source-map-register && ncc build src/post.ts --out dist/post --source-map --no-source-map-register",
|
||||
"test": "jest",
|
||||
"check": "npm run format && npm run lint",
|
||||
"build": "npm run check && npm run compile",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue