Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/eliot-akira/builder

Bundle HTML, CSS, JS with optional server and live reload
https://github.com/eliot-akira/builder

Last synced: about 1 month ago
JSON representation

Bundle HTML, CSS, JS with optional server and live reload

Awesome Lists containing this project

README

        

# Mnao: Builder

## Install

The command-line interface is exposed as `mnb`.

As dev dependency

```bash
npm install --save-dev mnao-builder
```

As global command

```bash
npm install --global mnao-builder
```

### Commands

Develop

```bash
mnb dev
```

Build

```bash
mnb build
```

## Develop

Clone repo

```bash
git clone https://github.com/eliot-akira/mnao-builder
cd mnao-builder
```

Install dependencies

```bash
npm install
```

Build for development and watch files for changes

```bash
npm run dev
```

Build for production

```bash
npm run build
```