Skip to content

Commit

Permalink
Merge pull request #1 from lafkpages/typedoc
Browse files Browse the repository at this point in the history
TypeDoc
  • Loading branch information
lafkpages committed Oct 14, 2023
2 parents 6a162ff + 054c82a commit 1fc3a60
Show file tree
Hide file tree
Showing 8 changed files with 79 additions and 6 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
on: [push, pull_request]

jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2

- uses: pnpm/action-setup@v2
with:
version: 8.6.7

- name: Retrieve the cached "node_modules" directory (if present)
uses: actions/cache@v2
id: node-cache
with:
path: node_modules
key: node-modules-${{ runner.os }}-${{ hashFiles('package-lock.json') }}

- name: Install dependencies (if the cached directory was not found)
if: steps.node-cache.outputs.cache-hit != 'true'
run: pnpm i

- name: Create the docs directory locally in CI
run: pnpm build:docs

- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: docs
token: ${{ secrets.GITHUB_TOKEN }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# TypeDoc generated documentation
/docs

# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore

# Logs
Expand Down
Binary file modified bun.lockb
Binary file not shown.
11 changes: 9 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,19 @@
"type": "module",
"devDependencies": {
"@electron/asar": "^3.2.7",
"bun-types": "latest"
"bun-types": "latest",
"typedoc": "^0.25.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@tybys/chromium-pickle-js": "^1.0.0"
},
"scripts": {
"build": "bun scripts/build.ts",
"build:docs": "typedoc src/index.ts",
"pretest": "bun scripts/cleanup-test-data.ts",
"test": "bun test"
}
}
}
14 changes: 14 additions & 0 deletions scripts/build.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { rm } from "fs/promises";

const outdir = "dist";

await rm(outdir, { recursive: true, force: true });

await Bun.build({
entrypoints: ["src/index.ts"],
target: "node",
minify: true,
sourcemap: "external",
outdir,
splitting: true,
});
13 changes: 13 additions & 0 deletions scripts/cleanup-test-data.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { rm, readdir } from "fs/promises";
import { join as joinPaths } from "path";

// rm -f test/ignore/*.{js,json,txt}
// rm -f test/ignore/app-*.asar

const ignoreDir = "test/ignore";

for (const file of await readdir(ignoreDir)) {
if (/\.(js|json|txt)$|^app-.+\.asar/.test(file)) {
await rm(joinPaths(ignoreDir, file));
}
}
4 changes: 0 additions & 4 deletions test/cleanupTestData.sh

This file was deleted.

4 changes: 4 additions & 0 deletions typedoc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"$schema": "https://typedoc.org/schema.json",
"basePath": "src"
}

0 comments on commit 1fc3a60

Please sign in to comment.