create-tateru-cli
Version:
Create basic Tateru CLI project from template files
58 lines (37 loc) • 692 B
Markdown
# tateru-cli-gulp-vanilla
Basic template for static site generation using Tateru CLI.
## Usage
### 1. Install dependencies:
```sh
npm install
```
### 2. Start development:
```sh
npm run dev
```
### 3. Build for production:
```sh
npm run build:prod
```
## Development
### Commands
```sh
npm run dev
```
Starts the development environment with file watching and live reload.
```sh
npm run build
```
Builds the project for development.
```sh
npm run build:prod
```
Builds the project for production with optimizations.
```sh
npm run lint
```
Runs ESLint to check and fix code style issues.
```sh
npm run clean:dist
```
Cleans the `dist/` folder by removing all its contents.