path-manager-ute

1.0.1 • Public • Published

Path Manager

path-manager build status

Instantiable class with two parameters, first one is the path to a config json file, second is the customized one, brand, indicates the current brand of the package. 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', brand);
// 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'))

});

Readme

Keywords

none

Package Sidebar

Install

npm i path-manager-ute

Weekly Downloads

2

Version

1.0.1

License

ISC

Last publish

Collaborators

  • franksongca