Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kierandrewett/yogurt-pot

📦 A nimble, fat-free bundler, with easy to implement APIs
https://github.com/kierandrewett/yogurt-pot

Last synced: 3 days ago
JSON representation

📦 A nimble, fat-free bundler, with easy to implement APIs

Awesome Lists containing this project

README

        

# 📦 Yogurt Pot
> A nimble, fat-free bundler, with easy to implement APIs

## Install
```cli
$ npm i yogurt-pot
```

## Example

```js
const { yogurt } = require('./src/bundle.js');

const bundle = new yogurt({
name: 'main',
base: '/demo',
output: '/out',
log: {
showBundledFiles: true,
}
});

bundle.start();
```