rollup-plugin-babel
Advanced tools
Comparing version 2.3.6 to 2.3.8
# rollup-plugin-babel changelog | ||
## 2.3.8 | ||
* Create new version to (hopefully) solve bizarre CI issue | ||
## 2.3.7 | ||
* Be less clever about renaming Babel helpers ([#19](https://github.com/rollup/rollup-plugin-babel/issues/19)) | ||
## 2.3.6 | ||
@@ -4,0 +12,0 @@ |
@@ -106,3 +106,3 @@ 'use strict'; | ||
return babelCore.buildExternalHelpers(helpers, 'var').replace(/var babelHelpers = {};\n/, '').replace(/babelHelpers\.(.+) = function(?: \w+)?/g, 'function babelHelpers_$1').replace(/babelHelpers\.(.+) = /g, 'var babelHelpers_$1 = ').replace('babelHelpers;', '') // not sure where this comes from... | ||
return babelCore.buildExternalHelpers(helpers, 'var').replace(/var babelHelpers = {};\n/, '').replace(/babelHelpers\.(.+) = /g, 'var babelHelpers_$1 = ').replace('babelHelpers;', '') // not sure where this comes from... | ||
.trim() + '\n'; | ||
@@ -109,0 +109,0 @@ } |
@@ -103,3 +103,3 @@ import { join, dirname } from 'path'; | ||
return buildExternalHelpers(helpers, 'var').replace(/var babelHelpers = {};\n/, '').replace(/babelHelpers\.(.+) = function(?: \w+)?/g, 'function babelHelpers_$1').replace(/babelHelpers\.(.+) = /g, 'var babelHelpers_$1 = ').replace('babelHelpers;', '') // not sure where this comes from... | ||
return buildExternalHelpers(helpers, 'var').replace(/var babelHelpers = {};\n/, '').replace(/babelHelpers\.(.+) = /g, 'var babelHelpers_$1 = ').replace('babelHelpers;', '') // not sure where this comes from... | ||
.trim() + '\n'; | ||
@@ -106,0 +106,0 @@ } |
{ | ||
"name": "rollup-plugin-babel", | ||
"version": "2.3.6", | ||
"version": "2.3.8", | ||
"description": "Seamless integration between Rollup and Babel.", | ||
@@ -5,0 +5,0 @@ "main": "dist/rollup-plugin-babel.cjs.js", |
@@ -109,3 +109,2 @@ import { dirname, join } from 'path'; | ||
.replace( /var babelHelpers = {};\n/, '' ) | ||
.replace( /babelHelpers\.(.+) = function(?: \w+)?/g, 'function babelHelpers_$1' ) | ||
.replace( /babelHelpers\.(.+) = /g, 'var babelHelpers_$1 = ' ) | ||
@@ -112,0 +111,0 @@ .replace( 'babelHelpers;', '' ) // not sure where this comes from... |
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
19121
263