browserify-asterisk

1.0.9 • Public • Published

browserify-asterisk

Browserify-asterisk is one of browserify transformer which is used to transform require JS path

require(*/path/to/module)

to corresponding module (The target module is chosen from list of cartridges in cartridge paths. These cartridge paths is set in configuration file cartridgepath.json)

Getting Started

npm install browserify-asterisk

Edit grunt file to integrate browserify-asterisk with browserify

name_js_task: {
    files: [
        //js lists
    ],
    options: {
        browserifyOptions: {
            //options
        },
        transform: [
            ['browserify-asterisk',{directory: 'name of cartridge'}]
        ]
    }
}

cartridgepath.json

{
    "cartridge_one": {
        "cartridge_path": "base_cartridge_one:base_cartridge_two:cartridge_one"
    },
    "cartridge_two": {
        "cartridge_path": "base_cartridge_one:base_cartridge_two:cartridge_two"
    },
    "cartridge_three": {
        "cartridge_path": "base_cartridge_one:base_cartridge_two:cartridge_three"
    }
}
 

browserify-asterisk checks which cartridge it is running on, then iterate all cartridge in appropriate cartridge path, the iteration will end whenever the target module is found / or not found in every cartridge in appropriate cartridge path

The parameter directory in below statement is required

['browserify-asterisk',{directory: 'name of cartridge'}]

note with grunt-browserify

grunt-browserify build js modules with asynchrouns mode but browserify-asterisk is unable to transform js modules that grunt-browserify is running on. The solution for this issue is you should design your js tasks with synchronous mode.

Readme

Keywords

Package Sidebar

Install

npm i browserify-asterisk

Weekly Downloads

10

Version

1.0.9

License

MIT

Unpacked Size

6.17 kB

Total Files

3

Last publish

Collaborators

  • anhtrannhat