4.1.0 • Published 8 years ago

cortex-neuron-builder v4.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

neuron-builder NPM version Build Status Dependency Status

Usage

var builder = require('neuron-builder');

builder(options).parse(file, callback)

builder(options)
.on('warn', function(message){
  console.warn(message);
})
.parse(file, callback);

arguments

  • options Object

    • pkg: mixed package json format of project
    • targetVersion: target version to build
    • cwd: current working directory
    • changedFile: the file has been changed. If it has no relations with the parsing file, an ENOTNEEDBUILD error will be thrown.
    • allowNotInstalled
  • file Path the parsing file

callback will get err and contents as its arguments, where contents is the wrapped result.

4.1.0

8 years ago

4.0.6

9 years ago