2.0.0 • Published 7 years ago

start-files v2.0.0

Weekly downloads
9
License
MIT
Repository
github
Last release
7 years ago

start-files

npm linux build windows build coverage deps

Files task for Start.

Install

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

Usage

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 for details.

Arguments

files(glob, options)