gulp-filterpath
v1.0.3
Published
Corrects the relative path error for the Gulp watch task
Downloads
3
Readme
gulp-filterpath
Corrects the relative path error for the Gulp watch task.
Install
npm:
$ npm install --save-dev gulp-filterpath
yarn:
yarn add -D gulp-filterpath
Usage
const path = require("path");
const filterPath = require("gulp-filterpath");
const config = {
src: "./theme/src",
dist: "./theme/assets",
};
const correct_path = filterPath(__dirname, path.resolve(config.src, "js/**/*.js"));
Parameters
root_path
- The project root path.target_path
- Full path to files.