Added license & updated build to cache node_modules
All checks were successful
Build / Tag Version (push) Successful in 3s
Build / Publish (push) Successful in 3s
Build / Build NPM Project (push) Successful in 17s

This commit is contained in:
Zakary Timson 2023-12-20 00:16:54 -05:00
parent cd80208734
commit 95251e9175
2 changed files with 3 additions and 7 deletions

View File

@ -42,12 +42,8 @@ jobs:
with:
pattern: dist
- name: Upload Docs
uses: actions/upload-artifact@v3
with:
name: docs
path: docs
retention-days: 7
- name: Upload Wiki
uses: ztimson/actions/wiki@develop
tag:
name: Tag Version

View File

@ -9,7 +9,7 @@
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && npm run build:docs",
"build:docs": "npx typedoc --readme none --plugin typedoc-plugin-markdown --out docs src/index.ts",
"build:docs": "npx typedoc --readme none --plugin typedoc-plugin-markdown --entryDocument Home.md --out docs src/index.ts",
"test": "npx jest --verbose",
"test:coverage": "npx jest --verbose --coverage",
"watch": "npm run build && npx tsc --watch"