Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/widdershin/fusepack

A build system powered by Fuse
https://github.com/widdershin/fusepack

Last synced: 19 days ago
JSON representation

A build system powered by Fuse

Awesome Lists containing this project

README

        

# fusepack
A build system powered by Fuse

Usage
----

Say we have a source file, `index.js`, with the following contents:

```
console.log('hi!');
```

First, create a `Fusepack` file.

```
build/

index.js -> browserify - -> bundle.js
styles.css -> postcss -> bundle.css
src/index.ts
```

Now, open `build/bundle.js`. You should see the browserified output of `index.js`.

If you update `index.js`, and reopen `bundle.js`, it will update!