Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.01 KB

README.md

File metadata and controls

30 lines (22 loc) · 1.01 KB

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.