gulp-ngbs-forms

1.5.0 • Public • Published

gulp-ngbs-forms

Generate forms using Angular for validations and Bootstrap for styles from short and concise descriptions of the fields.

To read more about the format of the form files see the ngbs-forms project directly.

Installation

Install via npm:

npm install gulp-ngbs-forms --save-dev

Example

var gulp = require('gulp'),
    forms = require('gulp-ngbs-forms');
 
gulp.task('default', function() {
  return gulp.src('client/partials/**/*.html')
    .pipe(forms())
    .pipe(gulp.dest('tmp/partials'));
});

Example changing the forms folder

You can specify the route of the forms relative to whatever folder you want. Pass the formsCwd option to the plugin to change the base folder.

For example with this code you can specify forms routes relative to the client folder.

var gulp = require('gulp'),
    forms = require('gulp-ngbs-forms');
 
gulp.task('default', function() {
  return gulp.src('client/partials/**/*.html')
    .pipe(forms({formsCwd: 'client'}))
    .pipe(gulp.dest('tmp/partials'));
});

Dependents (0)

Package Sidebar

Install

npm i gulp-ngbs-forms

Weekly Downloads

1

Version

1.5.0

License

MIT

Last publish

Collaborators

  • ernestoalejo