Update 'npm run build' to build the 'dist' outputs

This commit is contained in:
daz 2024-01-31 13:55:46 -07:00
parent 1ff5a18cc3
commit 6253261cf7
No known key found for this signature in database

View File

@ -5,11 +5,11 @@
"description": "Gradle Wrapper Validation Action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"compile": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"build": "ncc build",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},