# packing-glob

> Gruntjs file style

Latest version **1.0.1** (published 2016-07-26) · ISC license · 0 weekly downloads

## Install

```sh
npm install packing-glob
pnpm add packing-glob
yarn add packing-glob
bun add packing-glob
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2016-07-26 |
| First published | 2016-07-26 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | zhongzhi |
| Maintainers | zhongzhi |
| Keywords | glob |

## Links

- npm: https://www.npmjs.com/package/packing-glob
- Repository: https://github.com/zhongzhi107/packing-glob
- Homepage: https://github.com/zhongzhi107/packing-glob#readme
- Issues: https://github.com/zhongzhi107/packing-glob/issues
- npm.io page: https://npm.io/package/packing-glob

## Dependencies (2)

- [glob](https://npm.io/package/glob.md) ^7.0.5
- [lodash](https://npm.io/package/lodash.md) ^4.14.0

## Recent versions

- 1.0.1 (latest) — 2016-07-26
- 1.0.0 — 2016-07-26

## README

# packing-glob

基于glob的文件选择器

* 支持minmatch的所有参数
* 支持数组传参数

```javascript
var pg = require('packing-glob');
var patterns = [
  '**/*.png', // ['1.png', '2/3.png', 'logo.png']
  '!logo.png'
];
var options = {
  cwd: process.cwd()
};
var matches = pg(patterns, options); // ['1.png', '2/3.png']

```

---
_Source: https://npm.io/package/packing-glob · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
