Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zhangyu1818/rollib

Zero-configuration build tool for build a library, base on Rollup.
https://github.com/zhangyu1818/rollib

Last synced: 23 days ago
JSON representation

Zero-configuration build tool for build a library, base on Rollup.

Awesome Lists containing this project

README

        

# Rollib

Zero-configuration build tool for build a library, base on Rollup.

**Features**

- support TypeScript, React.
- support Less, Sass, Stylus.
- multiple entry and output.
- zero-configuration.

## Installation

```sh
npm install -D rollib
```

**Set up build script**

```json
{
"scripts": {
"build": "rollib"
}
}
```

## Configuration

```javascript
// rollib.config.js
export default {
entry: "src/index.js"
}
```