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.15.0 to 0.16.0

4

CHANGELOG.md
# rollup-plugin-buble changelog
## 0.16.0
* Update `buble`
## 0.15.0

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

@@ -18,3 +18,11 @@ 'use strict';

if ( !filter( id ) ) return null;
return buble.transform( code, options );
try {
return buble.transform( code, options );
} catch (e) {
e.plugin = 'buble';
e.loc = { file: id, line: e.loc.line, column: e.loc.column };
e.frame = e.snippet;
throw e;
}
}

@@ -21,0 +29,0 @@ };

@@ -16,3 +16,11 @@ import { transform } from 'buble';

if ( !filter( id ) ) return null;
return transform( code, options );
try {
return transform( code, options );
} catch (e) {
e.plugin = 'buble';
e.loc = { file: id, line: e.loc.line, column: e.loc.column };
e.frame = e.snippet;
throw e;
}
}

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

22

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

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

"main": "dist/rollup-plugin-buble.cjs.js",
"jsnext:main": "dist/rollup-plugin-buble.es.js",
"module": "dist/rollup-plugin-buble.es.js",
"scripts": {
"build": "npm run build:cjs && npm run build:es",
"build:cjs": "rollup -c -f cjs -o dist/rollup-plugin-buble.cjs.js",
"build:es": "rollup -c -f es6 -o dist/rollup-plugin-buble.es.js",
"build": "rollup -c",
"test": "mocha test/test.js",
"pretest": "npm run build:cjs",
"prepublish": "npm run lint && rm -rf dist && npm test && npm run build:es",
"pretest": "npm run build",
"prepublish": "npm run lint && rm -rf dist && npm test",
"lint": "eslint src"

@@ -25,10 +23,10 @@ },

"devDependencies": {
"eslint": "^3.3.1",
"mocha": "^3.0.2",
"rollup": "^0.37.0"
"eslint": "^4.7.2",
"mocha": "^3.5.3",
"rollup": "^0.50.0"
},
"dependencies": {
"buble": "^0.15.0",
"rollup-pluginutils": "^1.5.0"
"buble": "^0.16.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