Socket
Socket
Sign inDemoInstall

rollup-plugin-babel

Package Overview
Dependencies
Maintainers
10
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rollup-plugin-babel - npm Package Compare versions

Comparing version 4.3.0 to 4.3.1

22

CHANGELOG.md
# rollup-plugin-babel changelog
## 4.3.0
- Added `.custom` builder.
- Fail build when a plugin tries to add non existent babel helper
## 4.2.0
Allow `rollup@1` as peer dependency.
## 4.1.0
- Fixed "preflight check" for ignored files.
- Return `null` when no transformation has been done (fixing source maps for this case)
## 4.0.3
Fixed fallback class transform in "preflight check".
## 4.0.2
Fixed `rollup` peer dependency.
## 4.0.0

@@ -4,0 +26,0 @@

2

dist/rollup-plugin-babel.cjs.js

@@ -13,3 +13,3 @@ 'use strict';

// e.g. https://github.com/rollup/rollup-plugin-node-resolve/blob/313a3e32f432f9eb18cc4c231cc7aac6df317a51/src/index.js#L74
var HELPERS = '\0rollupPluginBabelHelpers';
var HELPERS = '\0rollupPluginBabelHelpers.js';

@@ -16,0 +16,0 @@ var addBabelPlugin = function (options, plugin) { return (Object.assign({}, options, {plugins: options.plugins.concat(plugin)})); };

@@ -12,3 +12,3 @@ import * as babel from '@babel/core';

// e.g. https://github.com/rollup/rollup-plugin-node-resolve/blob/313a3e32f432f9eb18cc4c231cc7aac6df317a51/src/index.js#L74
var HELPERS = '\0rollupPluginBabelHelpers';
var HELPERS = '\0rollupPluginBabelHelpers.js';

@@ -15,0 +15,0 @@ var addBabelPlugin = function (options, plugin) { return (Object.assign({}, options, {plugins: options.plugins.concat(plugin)})); };

{
"name": "rollup-plugin-babel",
"version": "4.3.0",
"version": "4.3.1",
"description": "Seamless integration between Rollup and Babel.",

@@ -5,0 +5,0 @@ "main": "dist/rollup-plugin-babel.cjs.js",

@@ -192,3 +192,3 @@ # rollup-plugin-babel

...result,
code: result.code + '\n// Generated by some custom loader',
code: result.code + '\n// Generated by some custom plugin',
};

@@ -195,0 +195,0 @@ },

@@ -7,2 +7,2 @@ export const INLINE = {};

// e.g. https://github.com/rollup/rollup-plugin-node-resolve/blob/313a3e32f432f9eb18cc4c231cc7aac6df317a51/src/index.js#L74
export const HELPERS = '\0rollupPluginBabelHelpers';
export const HELPERS = '\0rollupPluginBabelHelpers.js';

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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