UNPKG

innotec-auth-plugin

Version:

The Innotec-Auth-Plugin is designed to handle all authentication processes for applications where's conntected to the innotec v2 infrastructure. Theses plugin provides different authentication processes:

16 lines (11 loc) 343 B
'use strict'; const gulp = require('gulp'); const watch = require('gulp-watch'); require('require-dir')('./gulp-tasks'); gulp.task('default', () => { gulp.start('lint'); }); gulp.task('watch', () => { // Endless stream mode return gulp.watch(['components/**/*.pug', 'components/**/*.sass'], { verbose: true } , ['pug', 'sass']); });