gulp-haml-templates

1.1.0 • Public • Published

Build Status

gulp-haml-templates

Gulp plugin, which provides to compile coffee-haml file to javascript templates, like JST

Install

npm install gulp-coffee-templates

Usage

  // Gulpfile.js
  // require packages
  var gulp = require("gulp");
  var hamlt = require("gulp-haml-templates");
 
  gulp.task('templates', function () {
    gulp.src('./templates/**/*.haml')
    .pipe(hamlt())
    .pipe(gulp.dest('./js'));
});

if you prefere to store templates in sub directories (like rails view, for example: users/index.haml) and want templates to have names like HAML['users/index'], you cann pass withDir: true option to haml-templates.

  // Gulpfile.js
  // require packages
  var gulp = require("gulp");
  var hamlt = require("gulp-haml-templates");
 
  gulp.task('templates', function () {
    gulp.src('./templates/**/*.haml')
    .pipe(hamlt({ withDir: true}))
    .pipe(gulp.dest('./js'));
  });

How to contribute

  1. fork repository
  2. create new branch
  3. commit your changes
  4. make pull-request

License

MIT License (MIT)

Copyright (c) 2015 Sergey Bezhenyan bezhenyan@kodolabs.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, T License (MIT)

Copyright (c) 2015 Sergey Bezhenyan bezhenyan@kodolabs.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i gulp-haml-templates

Weekly Downloads

11

Version

1.1.0

License

MIT

Last publish

Collaborators

  • sbd