buble-loader

lightweight ES2015 source loader for Webpack using Buble

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
buble-loader
7110.5.15 years ago7 years agoMinified + gzip package size for buble-loader in KB

Readme

buble-loader
This package allows you to transpile ES2015 source using buble. See Buble project website to check out supported features.

Installation

npm i -S buble-loader buble

Usage

Add something like this to your webpack.config.js
module: {
  rules: [
    {
      test: /\.js$/,
      loader: 'buble-loader',
      include: path.join(__dirname, 'src'),
      options: {
        objectAssign: 'Object.assign'
      }
    }
  ]
}