# broccoli-taco

> Broccoli based static site generator

Latest version **0.0.8** (published 2015-04-21) · MIT license · 0 weekly downloads

## Install

```sh
npm install broccoli-taco
pnpm add broccoli-taco
yarn add broccoli-taco
bun add broccoli-taco
```

Provides the command `broccoli-taco`.

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.8 |
| Published | 2015-04-21 |
| First published | 2014-07-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 19 |
| Known vulnerabilities | 0 (+3 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 93 |
| Author | Moudy |
| Maintainers | moudy |

## Links

- npm: https://www.npmjs.com/package/broccoli-taco
- Repository: https://github.com/moudy/broccoli-taco
- Issues: https://github.com/moudy/broccoli-taco/issues
- npm.io page: https://npm.io/package/broccoli-taco

## Dependencies (19)

- [ncp](https://npm.io/package/ncp.md) ^2.0.0
- [rsvp](https://npm.io/package/rsvp.md) ^3.0.18
- [chalk](https://npm.io/package/chalk.md) ^1.0.0
- [clone](https://npm.io/package/clone.md) ^1.0.2
- [mkdirp](https://npm.io/package/mkdirp.md) ^0.5.0
- [resolve](https://npm.io/package/resolve.md) ^1.1.6
- [broccoli](https://npm.io/package/broccoli.md) ^0.16.0
- [commander](https://npm.io/package/commander.md) ^2.8.0
- [walk-sync](https://npm.io/package/walk-sync.md) ^0.1.3
- [handlebars](https://npm.io/package/handlebars.md) ^3.0.1
- [quick-temp](https://npm.io/package/quick-temp.md) ^0.1.2
- [findup-sync](https://npm.io/package/findup-sync.md) ^0.2.1
- [require-dir](https://npm.io/package/require-dir.md) ^0.3.0
- [broccoli-handlebars](https://npm.io/package/broccoli-handlebars.md) 0.0.6
- [broccoli-merge-trees](https://npm.io/package/broccoli-merge-trees.md) ^0.2.1
- [broccoli-sane-watcher](https://npm.io/package/broccoli-sane-watcher.md) 1.0.2
- [broccoli-unwatched-tree](https://npm.io/package/broccoli-unwatched-tree.md) ^0.1.1
- [broccoli-static-compiler](https://npm.io/package/broccoli-static-compiler.md) ^0.2.1
- [broccoli-kitchen-sink-helpers](https://npm.io/package/broccoli-kitchen-sink-helpers.md) ^0.2.6

## Recent versions

- 0.0.8 (latest) — 2015-04-21
- 0.0.7 — 2015-01-08
- 0.0.6 — 2014-10-16
- 0.0.5 — 2014-10-16
- 0.0.4 — 2014-10-08
- 0.0.3 — 2014-07-29
- 0.0.2 — 2014-07-26
- 0.0.0 — 2014-07-23

## README

### Installing

Install the command line utility globally via NPM. This makes `broccoli-taco new` available everywhere.
``` sh
npm install -g broccoli-taco
```

### Creating a Site

To create a new site, run the `new` command with the folder name as an argument. Then, install dependencies and run the development server. Your new site should now be available at [http://localhost:4200/](http://localhost:4200/).
``` sh
broccoli-taco new my-site
cd my-site && npm install
broccoli-taco serve
```

Now you can start adding pages, assets, and data.

### Building a Site

To build your entire site into a folder, you can run the `build` command with the destination folder as an argument. To compress assets, set the `BROCCOLI_TACO_ENV` variable to `production`.

``` sh
broccoli-taco build dist
# or
BROCCOLI_TACO_ENV=production broccoli-taco build dist
```

See [broccoli-taco.com](http://broccoli-taco.com) for full docs.

### Contributing

Issues and pull requests are welcome! Tests along with changes are also very welcome.

The best way to develop is to clone the project and then run [npm link](https://www.npmjs.org/doc/cli/npm-link.html) from inside the project folder. Tnen you can create a test site and run `npm link broccoli-taco` to link your project's broccoli-taco depenency to the cloned repo.

Tests can be run with

    cd test/sites/basic/
    npm install
    cd test/sites/dynamic/
    npm install
    cd test/sites/mounted/
    npm install
    npm test

### Todos/Ideas

- Make CSS preprocessor configurable or optional
- ES6 module transpiler option for clien-side assets?
- Refactor setup/teardown of build tests

---
_Source: https://npm.io/package/broccoli-taco · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
