# start-files

> Files task for Start

Latest version **2.0.0** (published 2016-12-26) · MIT license · 0 weekly downloads

## Install

```sh
npm install start-files
pnpm add start-files
yarn add start-files
bun add start-files
```

## 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 | 2.0.0 |
| Published | 2016-12-26 |
| First published | 2016-02-01 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=4 |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Kir Belevich |
| Maintainers | deepsweet |
| Keywords | start, start-task, glob |

## Links

- npm: https://www.npmjs.com/package/start-files
- Repository: https://github.com/start-runner/files
- Issues: https://github.com/start-runner/files/issues
- npm.io page: https://npm.io/package/start-files

## Dependencies (1)

- [globby](https://npm.io/package/globby.md) ^6.0.0

## Alternatives

- [lodash.startswith](https://npm.io/package/lodash.startswith.md) — 769.7K weekly downloads
- [@tarojs/service](https://npm.io/package/@tarojs/service.md) — 33.9K weekly downloads
- [io.extendreality.tilia.indicators.spatialtargets.unity](https://npm.io/package/io.extendreality.tilia.indicators.spatialtargets.unity.md) — 131 weekly downloads
- [@rtarojs/taro](https://npm.io/package/@rtarojs/taro.md) — 90 weekly downloads
- [node-branch-io](https://npm.io/package/node-branch-io.md) — 50 weekly downloads

## Recent versions

- 2.0.0 (latest) — 2016-12-26
- 1.0.0 — 2016-08-13
- 0.2.4 — 2016-02-11
- 0.2.3 — 2016-02-10
- 0.2.2 — 2016-02-08
- 0.2.1 — 2016-02-03
- 0.2.0 — 2016-02-01
- 0.1.1 — 2016-02-01
- 0.1.0 — 2016-02-01

## README

# start-files

[![npm](https://img.shields.io/npm/v/start-files.svg?style=flat-square)](https://www.npmjs.com/package/start-files)
[![linux build](https://img.shields.io/travis/start-runner/files/master.svg?label=linux&style=flat-square)](https://travis-ci.org/start-runner/files)
[![windows build](https://img.shields.io/appveyor/ci/start-runner/files/master.svg?label=windows&style=flat-square)](https://ci.appveyor.com/project/start-runner/files)
[![coverage](https://img.shields.io/codecov/c/github/start-runner/files/master.svg?style=flat-square)](https://codecov.io/github/start-runner/files)
[![deps](https://img.shields.io/gemnasium/start-runner/files.svg?style=flat-square)](https://gemnasium.com/start-runner/files)

Files task for [Start](https://github.com/start-runner/start).

## Install

```sh
npm install --save-dev start-files
# or
yarn add --dev start-files
```

## Usage

```js
import start from 'start';
import reporter from 'start-pretty-reporter';
import files from 'start-files';
import eslint from 'start-eslint';

export const lint = () => start(reporter())(
  files('lib/**/*.js'),
  eslint()
);
```

Task provides an array of found files, see [documentation](https://github.com/start-runner/start#readme) for details.

## Arguments

`files(glob, options)`

* `glob` – [globby patterns](https://github.com/sindresorhus/globby#patterns)
* `options` – [node-glob options](https://github.com/isaacs/node-glob#options), `{ realpath: true, ignore: [ 'node_modules/**', 'bower_components/**' ] }` by default

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