Skip to content

Commit

Permalink
chore: grant global read permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
KnorpelSenf committed Jan 16, 2025
1 parent 39f7fee commit 7dc4d40
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 8 deletions.
1 change: 0 additions & 1 deletion site/api/.gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion site/api/api_gen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const paths: [string, string, string, string, string, string][] = modules.map(
Deno.stdout.writeSync(
enc.encode(`Generating docs for ${paths.length} modules`),
);
const cache = createCache({ root: ".cache" });
const cache = createCache();
const dot = enc.encode(".");
const docs = await doc(paths.map(([id]) => id), { load: cache.load });
const refs: Array<Ref> = paths.map(
Expand Down
6 changes: 1 addition & 5 deletions site/api/deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"lock": false,
"tasks": {
"genapi": "deno -ENRW=.cache,../docs/ref api_gen.tsx ../docs/ref",
"reset": "rm -rf .cache"
"genapi": "deno -ENRW api_gen.tsx ../docs/ref"
},
"imports": {
"@deno/cache-dir": "jsr:@deno/cache-dir@^0.16.0",
Expand All @@ -13,9 +12,6 @@
"preact-render-to-string": "npm:preact-render-to-string@^6.5.13",
"marked-smartypants": "npm:marked-smartypants@^1.1.9"
},
"exclude": [
".cache"
],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
Expand Down
1 change: 0 additions & 1 deletion site/deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
},
"exclude": [
"node_modules",
"api/.cache",
"docs/.vitepress/cache",
"docs/.vitepress/.temp",
"docs/.vitepress/dist",
Expand Down

0 comments on commit 7dc4d40

Please sign in to comment.