# @ardatan/bob

> Bob The Bundler!

Latest version **0.2.7** (published 2020-01-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install @ardatan/bob
pnpm add @ardatan/bob
yarn add @ardatan/bob
bun add @ardatan/bob
```

Provides the commands `bob`, `bob-update-version`.

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 0.2.7 |
| Published | 2020-01-20 |
| First published | 2019-11-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 6.2 KB |
| Known vulnerabilities | 0 (+2 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 49 |
| Author | Kamil Kisiela |
| Maintainers | ardatan |

## Links

- npm: https://www.npmjs.com/package/@ardatan/bob
- Repository: https://github.com/kamilkisiela/bob
- Homepage: https://github.com/kamilkisiela/bob#readme
- Issues: https://github.com/kamilkisiela/bob/issues
- npm.io page: https://npm.io/package/@ardatan/bob

## Dependencies (4)

- [rollup](https://npm.io/package/rollup.md) 1.27.13
- [rollup-plugin-typescript2](https://npm.io/package/rollup-plugin-typescript2.md) 0.25.3
- [rollup-plugin-auto-external](https://npm.io/package/rollup-plugin-auto-external.md) 2.0.0
- [rollup-plugin-generate-package-json](https://npm.io/package/rollup-plugin-generate-package-json.md) 3.2.0

## Recent versions

- 0.2.7 (latest) — 2020-01-20
- 0.2.6 — 2020-01-09
- 0.2.5 — 2020-01-09
- 0.2.4 — 2020-01-09
- 0.2.3 — 2020-01-09
- 0.2.2 — 2020-01-09
- 0.1.8 — 2019-12-16
- 0.1.7 — 2019-11-27
- 0.1.6 — 2019-11-27
- 0.1.5 — 2019-11-27
- 0.1.4 — 2019-11-15
- 0.1.3 — 2019-11-15
- 0.1.2 — 2019-11-14
- 0.1.1 — 2019-11-14
- 0.1.0 — 2019-11-14
- … 7 more at https://npm.io/package/@ardatan/bob/versions

## README

# Bob (The Compiler)

Bob is the TypeScript build, bundle and verification tool used by almost all
[The Guild](https://the-guild.dev) open source projects.

Scope:

- **Build**: Build ESM and CommonJS compatible npm packages
- **Verify**: Ensure all ESM and CommonJS imports within an npm package are usable

## Requirements

- Yarn workspace or single package project
- TypeScript
- It's so strict you shouldn't use it!

## Setup

Setting up bob is currently undocumented. You can check
[GraphQL Code Generator](https://github.com/dotansimha/graphql-code-generator) repository (or any
other The Guild repository).

## Configuration

You can add a `bob` key to each `package.json`.

**Disable bob for a single package**

```jsonc
{
  "name": "graphql-lfg",
  "bob": false // exclude a single package from all things bob related
}
```

**Disable build for a single package**

```json
{
  "name": "graphql-lfg",
  "bob": {
    "build": false
  }
}
```

**Disable check for a single package**

```json
{
  "name": "graphql-lfg",
  "bob": {
    "check": false
  }
}
```

**Disable check for a single export in a package**

```json
{
  "name": "graphql-lfg",
  "bob": {
    "check": {
      "skip": ["./foo"]
    }
  }
}
```

## Usage

```bash
$ bob build
$ bob check
```

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