1.3.2 • Published 7 years ago

backed-builder v1.3.2

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

backed-builder NPM version Build Status Dependency Status Coverage percentage

A command line interface for fast es6 development

Installation

$ npm install backed-builder

Usage

soon...

API

Builder.build{bundles}

bundles

Type: array Default: undefined Options: src, dest, format, babel

An array of objects with each object containing a src & dest property

Minimal config
{
  "bundles": [{
    "src": "some/path/to/index",
    "dest": "some/path/to/index"
  }]
}
Minimal config with multiple bundles
{
  "bundles": [{
    "src": "some/path/to/index",
    "dest": "some/path/to/index"
  }, {
    "src": "some/other/path/to/element",
    "dest": "some/other/path/to/element"
  }]
}
Full config
{
  "name": "some-element",
  "bundles": [{
    "src": "some/path/to/index",
    "dest": "some/path/to/index",
    "moduleName": "someElement",
    "format": "iife"
  }, {
    "src": "some/other/path/to/element",
    "dest": "some/other/path/to/element",
    "moduleName": "someElement",
    "format": ["iife", "es"],
    "babel": {"babel-config"}
  }]
}
1.3.2

7 years ago

1.3.1

7 years ago

1.3.0

7 years ago

1.2.0

7 years ago

1.1.0

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago