Skip to content

Commit

Permalink
Merge branch 'next'
Browse files Browse the repository at this point in the history
  • Loading branch information
cdaringe committed Mar 1, 2024
2 parents eb7a98d + 2c2c1d8 commit dad05b2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .rad/tasks/site.ts
Expand Up @@ -43,7 +43,9 @@ export const task: Task = {
}
await createSiteDir(fs);
const { html, md } = await getPrereqFilenames().then(groupFilesByExt);
const mdContentsP = mdFilesToHtmlParts(["./readme.md", ...md], fs);
logger.info(`html: ${html.join(", ")}`);
logger.info(`md: ${md.join(", ")}`);
const mdContentsP = mdFilesToHtmlParts(md, fs);
const htmlIndexFilename = html[0];
if (!htmlIndexFilename) throw new Error(`html index page not found`);
// race: read input files, write some artifacts
Expand Down
3 changes: 1 addition & 2 deletions assets/site/0010-build-buds.md
Expand Up @@ -4,5 +4,4 @@ Some interesting build functions that are not _integrated_ into `rad` are
checked into the `rad` repository. These are generally considered unofficial or
unsupported tools that may be of interest to rad users.

See [build-buds](https://github.com/cdaringe/rad/tree/next/src/build-buds) in
GitHub.
- [deno esm browser](https://github.com/cdaringe/rad/tree/next/src/tasks/build-buds/deb)
2 changes: 1 addition & 1 deletion rad
Expand Up @@ -13,4 +13,4 @@ cd "$( dirname -- "$SCRIPT_PATH"; )" > '/dev/null';
SCRIPT_PATH="$( pwd; )";
popd > '/dev/null';

deno run --unstable -A "$SCRIPT_PATH/src/bin.ts" --log-level info "$@"
deno run -A "$SCRIPT_PATH/src/bin.ts" --log-level info "$@"

0 comments on commit dad05b2

Please sign in to comment.