# gulp-liquid-to-handlebars

> Convert liquid templates to handlebars templates. There are so many resources for jekyll and liquid on github, but handlebars is a better engine for javascript.

Latest version **1.0.1** (published 2017-06-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install gulp-liquid-to-handlebars
pnpm add gulp-liquid-to-handlebars
yarn add gulp-liquid-to-handlebars
bun add gulp-liquid-to-handlebars
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2017-06-15 |
| First published | 2017-02-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=4 |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Jon Schlinkert |
| Maintainers | jonschlinkert |
| Keywords | blog, boilerplate, convert, converter, gulp, gulpplugin, handlebars, jekyll, liquid, templates, theme, to |

## Links

- npm: https://www.npmjs.com/package/gulp-liquid-to-handlebars
- Repository: https://github.com/jonschlinkert/gulp-liquid-to-handlebars
- Issues: https://github.com/jonschlinkert/gulp-liquid-to-handlebars/issues
- npm.io page: https://npm.io/package/gulp-liquid-to-handlebars

## Dependencies (2)

- [through2](https://npm.io/package/through2.md) ^2.0.3
- [liquid-to-handlebars](https://npm.io/package/liquid-to-handlebars.md) ^2.0.3

## Alternatives

- [update-check](https://npm.io/package/update-check.md) — 4.0M weekly downloads
- [react-native-onesignal](https://npm.io/package/react-native-onesignal.md) — 134.5K weekly downloads
- [react-redux-toastr](https://npm.io/package/react-redux-toastr.md) — 33.7K weekly downloads
- [@nocobase/plugin-notification-manager](https://npm.io/package/@nocobase/plugin-notification-manager.md) — 2.0K weekly downloads
- [react-simple-toasts](https://npm.io/package/react-simple-toasts.md) — 1.9K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2017-06-15
- 1.0.0 — 2017-06-15
- 0.1.0 — 2017-02-07

## README

# gulp-liquid-to-handlebars [![NPM version](https://img.shields.io/npm/v/gulp-liquid-to-handlebars.svg?style=flat)](https://www.npmjs.com/package/gulp-liquid-to-handlebars) [![NPM monthly downloads](https://img.shields.io/npm/dm/gulp-liquid-to-handlebars.svg?style=flat)](https://npmjs.org/package/gulp-liquid-to-handlebars) [![NPM total downloads](https://img.shields.io/npm/dt/gulp-liquid-to-handlebars.svg?style=flat)](https://npmjs.org/package/gulp-liquid-to-handlebars) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/gulp-liquid-to-handlebars.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/gulp-liquid-to-handlebars)

> Convert liquid templates to handlebars templates. There are so many resources for jekyll and liquid on github, but handlebars is a better engine for javascript.

## Install

Install with [npm](https://www.npmjs.com/):

```sh
$ npm install --save gulp-liquid-to-handlebars
```

## Usage

Thi is a plugin for [liquid-to-handlebars](https://github.com/jonschlinkert/liquid-to-handlebars), see that project for full details and documentation.

```js
var gulp = require('gulp');
var convert = require('gulp-liquid-to-handlebars');

gulp.task('templates', function() {
  return gulp.src('jekyll_project/**/*.{html,md}')
    .pipe(convert())
    .pipe(gulp.dest('dist'));
});

gulp.task('assets', function(cb) {
  return gulp.src(['**/*', '!**/*.{html,md}'], {dot: true})
    .pipe(gulp.dest('dist'));
});
```

## About

### Contributing

Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).

Please read the [contributing guide](.github/contributing.md) for advice on opening issues, pull requests, and coding standards.

### Building docs

_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_

To generate the readme, run the following command:

```sh
$ npm install -g verbose/verb#dev verb-generate-readme && verb
```

### Running tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

```sh
$ npm install && npm test
```

### Author

**Jon Schlinkert**

* [github/jonschlinkert](https://github.com/jonschlinkert)
* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)

### License

Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
Released under the [MIT License](LICENSE).

***

_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on June 15, 2017._

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