https://github.com/eliot-akira/builder
Bundle HTML, CSS, JS with optional server and live reload
https://github.com/eliot-akira/builder
Last synced: 4 months ago
JSON representation
Bundle HTML, CSS, JS with optional server and live reload
- Host: GitHub
- URL: https://github.com/eliot-akira/builder
- Owner: eliot-akira
- Created: 2018-04-16T03:32:39.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-16T03:43:22.000Z (about 7 years ago)
- Last Synced: 2025-02-09T09:51:24.560Z (5 months ago)
- Language: JavaScript
- Size: 37.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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
```