grawk / construx-browserify

construx plugin to generate browserify bundles on the fly
Other
0 stars 0 forks source link

construx-browserify

Lead Maintainer: Matt Edelman

Build Status NPM version

construx plugin for JIT-compiling browserify resources during development of express applications.

REMOVE THIS SECTION

This repository is meant as a template for construx plugins. If you wish to use it:

If you want the krakenjs team to promote your plugin:

Requirements

This plugin requires your project to have <whatever module>@<whatever semver>.

Usage

Install

$ npm install --save-dev construx-browserify

Configure

Where you configure your construx plugins:

{
    "browserify": {
        "module": "construx-browserify",
        "files": "**/*.js",
        "bundles": {
            "/bundle.js": {
                "src": "path:./public/main.js",
                "options": {
                    "transform": ["reactify", "require-globify"]
                }
            }
        }
    }
}

Note: See construx README for general usage of construx