yet another builder/bundler for the web
Webup is actually quite lazy and only concerns about reading, joining, splitting, etc... .
Instead it relies on plugins & presets to do the heavy work (he even doesn't concern bundling by default, jeez).
webup({
entry: 'index.html',
shell: 'my-app.html',
dest: 'build/index.html',
sources: ['./test/html/**/*']
});
Type: string
Default: null
The entry point of your app (usually index.html).
Type: string
Default: null
An app shell containing the basic layout of your app (like my-app.html).
Type: string
Default: null
The destination to write the result to.
Type: array
Default: []
App sources, dependencies, etc ...
Type: array
Default: []
An array containing plugins.
Type: array
Default: ['default']
An array containing presets.
note: Webup does nothing when no presets defined
read, clean, split, plugins, join, write
read, bundler, clean, plugins, write
- webup-preset-default The default preset used to create a unbundled & bundled build.
- webup-plugin-default Example for creating a plugin yourself.
- webup-plugin-split Plugin for handling splitted html, css & js paths.
- Finish readme
- Create wiki