dir-glob

WebJar for dir-glob

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

dir-glob
Last Version

Last Version

3.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

dir-glob
WebJar for dir-glob
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/kevva/dir-glob

Download dir-glob

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/dir-glob/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>dir-glob</artifactId>
    <version>3.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/dir-glob/
implementation 'org.webjars.npm:dir-glob:3.0.1'
// https://jarcasting.com/artifacts/org.webjars.npm/dir-glob/
implementation ("org.webjars.npm:dir-glob:3.0.1")
'org.webjars.npm:dir-glob:jar:3.0.1'
<dependency org="org.webjars.npm" name="dir-glob" rev="3.0.1">
  <artifact name="dir-glob" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='dir-glob', version='3.0.1')
)
libraryDependencies += "org.webjars.npm" % "dir-glob" % "3.0.1"
[org.webjars.npm/dir-glob "3.0.1"]

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.npm : path-type jar [4.0.0,5)

Project Modules

There are no modules declared in this project.

dir-glob Build Status

Convert directories to glob compatible strings

Install

$ npm install dir-glob

Usage

const dirGlob = require('dir-glob');

(async () => {
	console.log(await dirGlob(['index.js', 'test.js', 'fixtures']));
	//=> ['index.js', 'test.js', 'fixtures/**']

	console.log(await dirGlob(['index.js', 'inner_folder'], {cwd: 'fixtures'}));
	//=> ['index.js', 'inner_folder/**']

	console.log(await dirGlob(['lib/**', 'fixtures'], {
		files: ['test', 'unicorn']
		extensions: ['js']
	}));
	//=> ['lib/**', 'fixtures/**/test.js', 'fixtures/**/unicorn.js']

	console.log(await dirGlob(['lib/**', 'fixtures'], {
		files: ['test', 'unicorn', '*.jsx'],
		extensions: ['js', 'png']
	}));
	//=> ['lib/**', 'fixtures/**/test.{js,png}', 'fixtures/**/unicorn.{js,png}', 'fixtures/**/*.jsx']
})();

API

dirGlob(input, options?)

Returns a Promise<string[]> with globs.

dirGlob.sync(input, options?)

Returns a string[] with globs.

input

Type: string | string[]

Paths.

options

Type: object

extensions

Type: string[]

Append extensions to the end of your globs.

files

Type: string[]

Only glob for certain files.

cwd

Type: string[]

Test in specific directory.


Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.

Versions

Version
3.0.1
2.2.2
2.0.0