Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kierandrewett/yogurt-pot
- Owner: kierandrewett
- License: mit
- Created: 2019-11-07T21:40:28.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-03T19:30:42.000Z (about 5 years ago)
- Last Synced: 2024-05-17T06:51:20.452Z (6 months ago)
- Homepage: https://yogurtpot.now.sh/
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();
```