Implement platform agnostic directory deletion

This commit is contained in:
Nick Alteen
2025-12-05 11:38:35 -05:00
parent c37dcf74a5
commit f780d55ffc
4 changed files with 2 additions and 27296 deletions

View File

@@ -39,7 +39,7 @@ jobs:
- name: Remove dist/ Directory
id: remove-dist
run: rm -rf ./dist/
run: npx rimraf ./dist
- name: Install Dependencies
id: install

27293
dist/index.js generated vendored

File diff suppressed because one or more lines are too long

1
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@@ -30,7 +30,7 @@
"format:check": "npx prettier --check .",
"lint": "npx eslint .",
"local-action": "npx @github/local-action . src/main.ts .env",
"package": "rm -rf ./dist && npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"package": "npx rimraf ./dist && npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"package:watch": "npm run package -- --watch",
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
"all": "npm run format:write && npm run lint && npm run test && npm run coverage && npm run package"