rollup-plugin-babel
Advanced tools
Comparing version 4.3.1 to 4.3.2
# rollup-plugin-babel changelog | ||
## 4.3.1 | ||
- Add `.js` extension to the virtual babel helpers file (only matters when using `preserveModules` option in rollup) | ||
## 4.3.0 | ||
@@ -4,0 +8,0 @@ |
@@ -215,3 +215,3 @@ 'use strict'; | ||
if (helpers !== RUNTIME) { | ||
if (helpers !== RUNTIME && !externalHelpers) { | ||
transformOptions = addBabelPlugin(transformOptions, importHelperPlugin); | ||
@@ -218,0 +218,0 @@ } |
@@ -214,3 +214,3 @@ import * as babel from '@babel/core'; | ||
if (helpers !== RUNTIME) { | ||
if (helpers !== RUNTIME && !externalHelpers) { | ||
transformOptions = addBabelPlugin(transformOptions, importHelperPlugin); | ||
@@ -217,0 +217,0 @@ } |
{ | ||
"name": "rollup-plugin-babel", | ||
"version": "4.3.1", | ||
"version": "4.3.2", | ||
"description": "Seamless integration between Rollup and Babel.", | ||
@@ -5,0 +5,0 @@ "main": "dist/rollup-plugin-babel.cjs.js", |
@@ -108,3 +108,3 @@ import * as babel from '@babel/core'; | ||
if (helpers !== RUNTIME) { | ||
if (helpers !== RUNTIME && !externalHelpers) { | ||
transformOptions = addBabelPlugin(transformOptions, helperPlugin); | ||
@@ -111,0 +111,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
65108