Skip to content

mvandrew/gulp-filterpath

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-filterpath

NPM

Build Status Dependencies

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.