Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TypeDoc #1

Merged
merged 11 commits into from
Oct 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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));
}
}
20 changes: 10 additions & 10 deletions src/asar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ export class Asar extends DirectoryEntry {
// Read header size
const headerSize = createFromBuffer(asarBytes.subarray(0, 16))
.createIterator()
.readInt();
.readUInt32();

// Read header
// We start at 16 because 0-8 are the Pickle object containing
// the header size, and 9-15 are the header size itself
const rawHeader = asarBytes.subarray(16, headerSize + 16).toString();
const header = JSON.parse(rawHeader) as unknown;

Expand Down Expand Up @@ -187,12 +189,16 @@ export class Asar extends DirectoryEntry {

const headerDataStr = JSON.stringify(headerData);
const headerPickle = createEmpty();
headerPickle.writeString(headerDataStr); // TODO: check return val
if (!headerPickle.writeString(headerDataStr)) {
throw new Error("[Asar.getData] Failed to write header data to Pickle");
}
const headerDataBuf = headerPickle.toBuffer();

const headerSizePickle = createEmpty();
headerSizePickle.writeUInt32(headerDataStr.length + 9);
const headerSizeDataBuf = headerSizePickle.toBuffer(); // TODO: ^^
if (!headerSizePickle.writeUInt32(headerDataStr.length + 9)) {
throw new Error("[Asar.getData] Failed to write header size to Pickle");
}
const headerSizeDataBuf = headerSizePickle.toBuffer();

const bufs = [headerSizeDataBuf, headerDataBuf];

Expand All @@ -209,12 +215,6 @@ export class Asar extends DirectoryEntry {
throw new Error("[Asar.getData] File size mismatch");
}

// const realOffset =
// parseInt(fileEntry.offset) +
// headerSizeDataBuf.length +
// headerDataBuf.length +
// 1;

bufs.push(fileDataBuf);
}
}
Expand Down
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"
}
Loading