update lib

This commit is contained in:
Michael Shick 2022-11-04 18:37:27 -04:00
parent 80f4918ea8
commit a0bbba521b
No known key found for this signature in database
GPG key ID: ADF5BC9704BB4A61
2 changed files with 4 additions and 1 deletions

View file

@ -144,6 +144,9 @@ const run = async () => {
if (err instanceof Error) {
core.setFailed(err.message);
}
else {
core.setFailed('unknown failure');
}
}
};
// Don't auto-execute in the test environment

View file

@ -25,7 +25,7 @@
"build": "tsc",
"clean": "rm -rf node_modules dist package-lock.json __tests__/runner/**/*",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"package": "ncc build --source-map",
"test": "vitest run",
"watch": "vitest"
},