Socket
Book a DemoInstallSign in
Socket

@taskr/buble

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@taskr/buble

Bublé plugin for Taskr.

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

@taskr/buble npm

Bublé plugin for Taskr.

Install

$ npm install --save-dev @taskr/buble

Usage

exports.scripts = function * (task) {
  yield task.source('test/**/*.js').buble({
    inline: true,
    transforms: {
      arrow: true,
      modules: false,
      dangerousForOf: true
    }
  }).target('dist/js');
}

API

.buble(options)

To view all Bublé options, visit its documentation.

This plugin includes two additional options:

options.inline

Type: Boolean
Default: false
If true, will append an internal sourcemap (data URI) to the file's contents instead of an external link (default). Also will not create a new *.js.map file. Requires that options.sourceMap to remain true.

options.sourceMap

Type: Boolean
Default: true
Creates an external sourcemap by default. Disable all mapping behavior by setting this to false.

Support

Any issues or questions can be sent to the Taskr monorepo.

Please be sure to specify that you are using @taskr/buble.

License

MIT © Luke Edwards

Keywords

taskr

FAQs

Package last updated on 27 Jul 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts