UNPKG

boil-cli-tool

Version:

CLI tool - boilerplate template manager and generator

6 lines (5 loc) 1.16 kB
export declare const globalYaml = "# definition of 'filetype' arg\nfiletype: # arg will be called using --filetype\n shorthand: ft # arg can be called using -ft instead of --filetype\n description: file type # used in help menu\n default: js # if arg not provided by user then default to this value\n options: # if user provides an input not in this list then throw an error\n - js\n - py\n - go\n"; export declare const localYaml = "# definition of 'name' arg\nname: # arg will be called using --name\n shorthand: n # arg can be called using -n instead of --name\n description: component name # used in help menu\n"; export declare const placeholderContent = "//___timestamp()___\n___name___= \"hello world\"\n"; export declare const templateFunctionContent = "// this is a template function - it can be invoked in templates using___timestamp()___\n// see here for more details: https://jordan-eckowitz.github.io/boil-cli-docs/how-it-works/#template-functions\nmodule.exports = function () {\n return Date.now();\n};"; export declare const readmeContent = "check out the documentation here: https://jordan-eckowitz.github.io/boil-cli-docs";