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

rollup-plugin-buble

Package Overview
Dependencies
Maintainers
2
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.18.0 to 0.19.0

5

CHANGELOG.md
# rollup-plugin-buble changelog
## 0.19.0
* Update `buble`
* Better support for errors thrown by `buble`
## 0.18.0

@@ -4,0 +9,0 @@

3

dist/rollup-plugin-buble.cjs.js

@@ -23,3 +23,4 @@ 'use strict';

e.plugin = 'buble';
e.loc = { file: id, line: e.loc.line, column: e.loc.column };
if ( !e.loc ) e.loc = {};
e.loc.file = id;
e.frame = e.snippet;

@@ -26,0 +27,0 @@ throw e;

import { transform } from 'buble';
import { createFilter } from 'rollup-pluginutils';
function buble$1 ( options ) {
function buble ( options ) {
if ( !options ) options = {};

@@ -21,3 +21,4 @@ var filter = createFilter( options.include, options.exclude );

e.plugin = 'buble';
e.loc = { file: id, line: e.loc.line, column: e.loc.column };
if ( !e.loc ) e.loc = {};
e.loc.file = id;
e.frame = e.snippet;

@@ -30,2 +31,2 @@ throw e;

export default buble$1;
export default buble;
{
"name": "rollup-plugin-buble",
"description": "Compile ES2015 with buble",
"version": "0.18.0",
"version": "0.19.0",
"author": "Rich Harris",

@@ -24,8 +24,8 @@ "repository": "https://gitlab.com/rich-harris/rollup-plugin-buble",

"mocha": "^3.5.3",
"rollup": "^0.50.0"
"rollup": "^0.55.4"
},
"dependencies": {
"buble": "^0.18.0",
"buble": "^0.19.0",
"rollup-pluginutils": "^2.0.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