path-to-glob-pattern
TypeScript icon, indicating that this package has built-in type declarations

2.0.1 • Public • Published

path-to-glob-pattern Actions Status: test

Convert file/directory path to glob pattern.

For example,

src/ => src/**/*

Install

Install with npm:

npm install path-to-glob-pattern

Usage

pathToGlobPattern return process function.

import { pathToGlobPattern } from "path-to-glob-pattern";
const processPatternJs = pathToGlobPattern({
    extensions: ["js"],
    cwd: __dirname
});
/* ## Pass directory */
console.log(processPatternJs("src"));
// => src/**/*.js

/* ## Pass file path */
console.log(processPatternJs("src/path-to-glob-pattern.js"));
// => src/path-to-glob-pattern.js

/* ## Pass not match file path */
console.log(processPatternJs("src/unknown.ext"));
// => src/unknown.ext

/* ## Multiple extensions */
const processPatternMultiple = pathToGlobPattern({
    extensions: ["js", "md"],
    cwd: __dirname
});
console.log(processPatternMultiple("."));
// => **/*.{js,md}

Changelog

See Releases page.

Running tests

Install devDependencies and Run npm test:

npm i -d && npm test

Contributing

Pull requests and stars are always welcome.

For bugs and feature requests, please create an issue.

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Author

License

MIT © azu

and

ESLint Copyright JS Foundation and other contributors, https://js.foundation https://github.com/eslint/eslint/blob/master/tests/lib/util/glob-util.js

Readme

Keywords

Package Sidebar

Install

npm i path-to-glob-pattern

Weekly Downloads

38,959

Version

2.0.1

License

MIT

Unpacked Size

13.1 kB

Total Files

8

Last publish

Collaborators

  • azu