# build-files

> Read the files from your build.

Latest version **0.2.0** (published 2016-10-05) · MPL-2.0 license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.0 |
| Published | 2016-10-05 |
| First published | 2016-09-05 |
| Weekly downloads | 0 |
| License | MPL-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=6 |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Seth Holladay |
| Maintainers | sholladay |
| Keywords | read, build, builds, key, keys, path, paths, file, files, filepath, filepaths, data, content, contents |

## Links

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

## Dependencies (1)

- [build-keys](https://npm.io/package/build-keys.md) ^0.2.0

## Alternatives

- [base64url](https://npm.io/package/base64url.md) — 6.1M weekly downloads
- [get-installed-path](https://npm.io/package/get-installed-path.md) — 502.9K weekly downloads
- [@uppy/url](https://npm.io/package/@uppy/url.md) — 185.8K weekly downloads
- [@d3fc/d3fc-shape](https://npm.io/package/@d3fc/d3fc-shape.md) — 16.2K weekly downloads
- [localizer](https://npm.io/package/localizer.md) — 226 weekly downloads

## Recent versions

- 0.2.0 (latest) — 2016-10-05
- 0.1.1 — 2016-09-09
- 0.1.0 — 2016-09-05

## README

# build-files [![Build status for build-files on Circle CI.](https://img.shields.io/circleci/project/sholladay/build-files/master.svg "Circle Build Status")](https://circleci.com/gh/sholladay/build-files "Build Files Builds")

> Read the files from your build.

## Why?

 - Know what is in your build and where it is.
 - Useful to send the build to external services.
 - Agnostic of how the files were written.

## Install

```sh
npm install build-files --save
```

## Usage

Get it into your program.

```js
const buildFiles = require('build-files');
```

Get a list of the files within the most recent build.

```js
buildFiles.latest().then((files) => {
    console.log('files:', files);
    // [
    //     {
    //         path    : 'master/1.0.0/foo.js',
    //         content : 'This is foo.'
    //     }
    // ]
});
```

## API

### buildFiles.latest(option)

#### option

Type: `object`

Settings and known [build data](https://github.com/sholladay/build-data).

##### cwd

Type: `string`<br>
Default: `process.cwd()`

The parent directory of the build root.

##### branch

Type: `string`

Read the files from the given branch name, rather than the most recently built branch.

##### version

Type: `string`

Read the files from the given version, rather than the most recently built version of the branch.

##### includeBranchLatest

Type: `boolean`<br>
Default: `true`

Whether to also read the files at the `<branch>/latest` path.

## Related

 - [delivr](https://github.com/sholladay/delivr) - Build your code and ship it to S3.
 - [build-keys](https://github.com/sholladay/build-keys) - Get the paths of files from your build.
 - [build-dir](https://github.com/sholladay/build-dir) - Get a place to put your build.
 - [build-data](https://github.com/sholladay/build-data) - Get metadata for your build.
 - [build-path](https://github.com/sholladay/build-path) - Get a path for the given build.
 - [build-version](https://github.com/sholladay/build-version) - Get a version for your build.

## Contributing

See our [contributing guidelines](https://github.com/sholladay/build-files/blob/master/CONTRIBUTING.md "The guidelines for participating in this project.") for more details.

1. [Fork it](https://github.com/sholladay/build-files/fork).
2. Make a feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`
4. Push to the branch: `git push origin my-new-feature`
5. [Submit a pull request](https://github.com/sholladay/build-files/compare "Submit code to this project for review.").

## License

[MPL-2.0](https://github.com/sholladay/build-files/blob/master/LICENSE "The license for build-files.") © [Seth Holladay](http://seth-holladay.com "Author of build-files.")

Go make something, dang it.

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