Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rollup-plugin-buble

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-plugin-buble - npm Package Compare versions

Comparing version 0.2.2 to 0.2.3

CHANGELOG.md

5

dist/rollup-plugin-buble.cjs.js

@@ -8,8 +8,7 @@ 'use strict';

if ( !options ) options = {};
const filter = rollupPluginutils.createFilter( options.include, options.exclude );
var filter = rollupPluginutils.createFilter( options.include, options.exclude );
return {
transform ( code, id ) {
transform: function ( code, id ) {
if ( !filter( id ) ) return null;
return buble.transform( code );

@@ -16,0 +15,0 @@ }

@@ -6,8 +6,7 @@ import { transform } from 'buble';

if ( !options ) options = {};
const filter = createFilter( options.include, options.exclude );
var filter = createFilter( options.include, options.exclude );
return {
transform ( code, id ) {
transform: function ( code, id ) {
if ( !filter( id ) ) return null;
return transform( code );

@@ -14,0 +13,0 @@ }

2

package.json
{
"name": "rollup-plugin-buble",
"description": "Compile ES2015 with buble",
"version": "0.2.2",
"version": "0.2.3",
"author": "Rich Harris",

@@ -6,0 +6,0 @@ "repository": "https://github.com/rollup/rollup-plugin-buble",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc