Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/zhangyu1818/rollib
- Owner: zhangyu1818
- Created: 2021-05-16T10:20:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-22T02:47:08.000Z (over 3 years ago)
- Last Synced: 2024-10-31T10:07:12.800Z (about 2 months ago)
- Language: TypeScript
- Homepage:
- Size: 129 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
}
```