Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/widdershin/fusepack
- Owner: Widdershin
- License: mit
- Created: 2017-10-09T20:55:04.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-03T07:25:55.000Z (over 6 years ago)
- Last Synced: 2024-10-11T02:02:19.981Z (about 1 month ago)
- Language: TypeScript
- Size: 42 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fusepack
A build system powered by FuseUsage
----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!