Skip to main content
Module

x/readme_manager/mod.ts>bootstrap

helps manage and harmonise READMEs in many repositories with template files
Latest
variable bootstrap
Re-export
import { bootstrap } from "https://deno.land/x/readme_manager@v3.0.0/mod.ts";

Bootstrap template files in a specified directory. Creates the required files for readme-manager.

import { bootstrap } from "./bootstrap.ts"
await bootstrap('/path/to/templates', (errorMsg: string, error?: Error) => {})

type

(templateDirectory: string, error: (message: string, error?: Error) => void) => unknown