dir-glob

WebJar for dir-glob

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

dir-glob
Последняя версия

Последняя версия

3.0.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

dir-glob
WebJar for dir-glob
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

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

Скачать dir-glob

Как подключить последнюю версию

<!-- 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"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.webjars.npm : path-type jar [4.0.0,5)

Модули Проекта

Данный проект не имеет модулей.

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.

Версии библиотеки

Версия
3.0.1
2.2.2
2.0.0