Getting Started
Installation
npm install @wikekos/cli
The Wikekos CLI provides a set of tools to scaffold projects, manage templates, and run automated workflows.
Tip: Use
wkt
as a shorthand for wikekos
in commands.
Configuration
{
"projectType": "blog",
"targetFormat": "markdown",
"themes": ["dark", "light"],
"buildOptions": {
"outputDir": "dist",
"includeMeta": true
}
}
Place the wikekos.config.json
file at the root of your project to define your build settings.
You can extend default configurations by creating a
.wikekostmpl
file.
API Reference
Core Classes
class
ProjectManager
getBuildManifest(): BuildManifest
interface BuildManifest {
entryPoints: string[];
assetMap: Record;
}