Comparing version 15.0.16 to 15.0.17
@@ -6,2 +6,13 @@ # Change Log | ||
## [15.0.17](https://github.com/d3fc/d3fc/compare/d3fc@15.0.16...d3fc@15.0.17) (2020-09-16) | ||
### Bug Fixes | ||
* main bundle was not being bable'd ([d74d531](https://github.com/d3fc/d3fc/commit/d74d531)) | ||
## [15.0.16](https://github.com/d3fc/d3fc/compare/d3fc@15.0.15...d3fc@15.0.16) (2020-09-08) | ||
@@ -8,0 +19,0 @@ |
{ | ||
"name": "d3fc", | ||
"version": "15.0.16", | ||
"version": "15.0.17", | ||
"description": "A collection of components that make it easy to build interactive charts with D3", | ||
@@ -47,3 +47,3 @@ "main": "build/d3fc.js", | ||
}, | ||
"gitHead": "172d2d9a237fd65730c2d6bc0643b2ca4bf4b0a3" | ||
"gitHead": "0b59ceb50b80e3b8b96b38f14e859ba7dafc30b8" | ||
} |
import babel from 'rollup-plugin-babel'; | ||
import babelrc from 'read-babelrc-up'; | ||
import resolve from 'rollup-plugin-node-resolve'; | ||
@@ -32,3 +31,3 @@ import minify from 'rollup-plugin-babel-minify'; | ||
const devPort = commandLineArgs.configPort || 8080; | ||
devPage = devPage.endsWith('.html') ? devPage : devPage + '.html'; | ||
@@ -40,7 +39,7 @@ | ||
const _plugins = [ | ||
babel(babelrc()), | ||
babel({ cwd: '../..' }), | ||
resolve() | ||
]; | ||
if(shouldMinify) { | ||
if (shouldMinify) { | ||
_plugins.push(minify({ comments: false })); | ||
@@ -72,3 +71,3 @@ } | ||
globals: (key) => { | ||
if(key.indexOf('d3-') === 0) { | ||
if (key.indexOf('d3-') === 0) { | ||
return 'd3'; | ||
@@ -84,3 +83,3 @@ } | ||
} | ||
rollupWarn(warning); | ||
@@ -87,0 +86,0 @@ } |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
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
539855
9502
11