Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
3d93315
trying to figure out how does it work
ForwardFeed Dec 31, 2025
945ca93
does it really need a configuration file?
ForwardFeed Dec 31, 2025
c8907a5
apparently the script I copied wasn't up to date? I'm fairly confused…
ForwardFeed Dec 31, 2025
2353fcf
Revert "apparently the script I copied wasn't up to date? I'm fairly …
ForwardFeed Dec 31, 2025
5a7cefd
this maybe?
ForwardFeed Dec 31, 2025
df4be23
this should not work, but that's how it's supposed to
ForwardFeed Dec 31, 2025
0e68036
I'm trying something else?
ForwardFeed Dec 31, 2025
b6807c0
is that a rollback?
ForwardFeed Dec 31, 2025
1cbe7ab
wrong input?
ForwardFeed Dec 31, 2025
cf40663
what
ForwardFeed Dec 31, 2025
278fdd0
is that a thing?
ForwardFeed Dec 31, 2025
3cc7ab4
this is unlikely to work
ForwardFeed Dec 31, 2025
9014af6
This clanker is as useful as me
ForwardFeed Dec 31, 2025
d675e0b
going back to that stupid issue
ForwardFeed Dec 31, 2025
60fae70
generic push message
ForwardFeed Dec 31, 2025
2b898d0
generic push message
ForwardFeed Dec 31, 2025
631f7d9
generic push message
ForwardFeed Dec 31, 2025
5001b30
Generic push message
ForwardFeed Dec 31, 2025
ba7e99a
Generic push message
ForwardFeed Dec 31, 2025
83934d0
Generic push message
ForwardFeed Dec 31, 2025
4604205
Generic push message
ForwardFeed Dec 31, 2025
eed54be
Generic push message
ForwardFeed Dec 31, 2025
1f6b921
Generic push message
ForwardFeed Dec 31, 2025
38d4f33
Generic push message
ForwardFeed Dec 31, 2025
57969f8
Generic push message
ForwardFeed Dec 31, 2025
bb47be9
Generic push message
ForwardFeed Dec 31, 2025
ac4b69b
I think I may have gotten it
ForwardFeed Dec 31, 2025
e0e2624
I think I may have gotten it
ForwardFeed Dec 31, 2025
fe6afb4
tsdocs NEEED the package-lock.json
ForwardFeed Dec 31, 2025
5768906
apparently it also needs a tsconfig.json
ForwardFeed Dec 31, 2025
cc1be6e
it needs to be specified that this project is a lib
ForwardFeed Dec 31, 2025
e84e4a1
is the v4 is needed here?
ForwardFeed Dec 31, 2025
ec44acc
just a small rename
ForwardFeed Dec 31, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions .github/workflows/tsdoc_ghpages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: TSDoc to GHPages

# in case you want it to be automatic
#on:
# push:
# branches:
# - master

# Allows you to run this workflow manually from the Actions tab
on:
release:
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write


jobs:
# Single deploy job since we're just deploying
deploy:
name: Deploy Documentation

# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"

- name: TSDoc Action
uses: erikyo/tsdoc-action@v1
with:
source_dir: ./types/*
output_dir: ./docs
front_page: README.md

- name: Setup Pages
uses: actions/configure-pages@v3

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: './docs'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
16 changes: 16 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"compilerOptions": {
"lib": ["ES2015"]
}
}