bundle action
All checks were successful
Distribution check / Generated files check (push) Successful in -1m57s
NPM Audit Check / Check NPM audit (push) Successful in -2m9s
Unit tests / Unit tests (latest) (push) Successful in -2m0s
Unit tests / Unit tests (lts/*) (push) Successful in -1m59s
Unit tests / Unit tests (lts/hydrogen) (push) Successful in -1m59s

This commit is contained in:
2025-11-07 14:13:19 -05:00
parent 996c1bc216
commit 6c27b5d0d6
17 changed files with 42159 additions and 135 deletions

View File

@@ -17,13 +17,16 @@
"url": "https://sanin.dev/"
},
"type": "module",
"main": "distribution/index.js",
"main": "lib/src/index.js",
"files": [
"distribution"
"dist"
],
"scripts": {
"build": "tsc",
"test": "vitest"
"test": "vitest",
"package": "ncc build --source-map --license licenses.txt",
"dist": "npm run build && npm run package",
"all": "npm run dist && vitest run"
},
"dependencies": {
"@actions/core": "^1.11.1",
@@ -33,6 +36,7 @@
},
"devDependencies": {
"@types/node": "24.10.0",
"@vercel/ncc": "^0.38.4",
"@vitest/coverage-v8": "4.0.7",
"typescript": "5.9.3",
"vitest": "4.0.7"