onlybuild (main) doxdox documentation

A zero-config cli for building static websites.

# buildFile(path)

Returns the default export if it is a string.

Parameters

Name Types Description
path string

# buildFiles(paths)

Iterate over all file paths and returns the default export for each file if it is a string.

Parameters

Name Types Description
paths string[]

# calculateOutputPathFromInputPath(path)

Calculates the output path of the file based on the original input path.

Parameters

Name Types Description
path string

# writeFileAndMakeDir(path, contents)

Writes the contents of a file to a path, creating parent directories as needed.

Parameters

Name Types Description
path string
contents string

# writeFiles(files, buildDir)

Write files to the build directory.

Parameters

Name Types Description
files { path: string; contents: string }[]
buildDir string

# copyFileAndMakeDir(src, dest)

Copies a file from one path to another, creating parent directories as needed.

Parameters

Name Types Description
src string
dest string

# copyFiles(paths, buildDir)

Iterate over all file paths and copy them to the build directory.

Parameters

Name Types Description
paths string[]
buildDir string

# html(strings, values)

String template utility that adds syntax highlighting and formatting in text editors.

Parameters

Name Types Description
strings TemplateStringsArray
values any[]