path-manager
v0.0.6
Published
a utility module for getting paths
Downloads
2
Readme
Path Manager
Instantiable class with one parameter which is the path to a config json file. Has methods that return an array js, scss, css, and views paths to be used at the beginning of gulp or grunt task
var plugins = require('gulp-load-plugins')(),
var PathManager = require('path-manager');
// instantiate with a config.json as only parameter
var pathsObj = new PathManager('./config.json');
// get js path
var jsPath = pathsObj.getJSPaths();
gulp.task('js', function () {
return gulp.src(jsPath)
.pipe(plugins.ngAnnotate())
.pipe(plugins.uglify())
.pipe(gulp.dest('dist/js'))
});