Socket
Socket
Sign inDemoInstall

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.4.0 to 0.5.0

4

CHANGELOG.md
# rollup-plugin-buble changelog
## 0.5.0
* Update `buble`
## 0.4.0

@@ -4,0 +8,0 @@

5

dist/rollup-plugin-buble.cjs.js

@@ -10,6 +10,9 @@ 'use strict';

if ( !options.transforms ) options.transforms = {};
options.transforms.modules = false;
return {
transform: function ( code, id ) {
if ( !filter( id ) ) return null;
return buble.transform( code );
return buble.transform( code, options );
}

@@ -16,0 +19,0 @@ };

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

if ( !options.transforms ) options.transforms = {};
options.transforms.modules = false;
return {
transform: function ( code, id ) {
if ( !filter( id ) ) return null;
return transform( code );
return transform( code, options );
}

@@ -14,0 +17,0 @@ };

{
"name": "rollup-plugin-buble",
"description": "Compile ES2015 with buble",
"version": "0.4.0",
"version": "0.5.0",
"author": "Rich Harris",

@@ -29,5 +29,5 @@ "repository": "https://github.com/rollup/rollup-plugin-buble",

"dependencies": {
"buble": "^0.4.0",
"buble": "^0.5.0",
"rollup-pluginutils": "^1.3.1"
}
}
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