From 95251e91751d009ca42affb0ee9f8fd0c78b4a7a Mon Sep 17 00:00:00 2001 From: ztimson Date: Wed, 20 Dec 2023 00:16:54 -0500 Subject: [PATCH] Added license & updated build to cache node_modules --- .github/workflows/build.yaml | 8 ++------ package.json | 2 +- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 93ea5ff..b6acbef 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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 diff --git a/package.json b/package.json index 86e49c1..2e20b44 100644 --- a/package.json +++ b/package.json @@ -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"