Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

d3fc

Package Overview
Dependencies
Maintainers
2
Versions
178
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

d3fc - npm Package Compare versions

Comparing version 15.0.16 to 15.0.17

11

CHANGELOG.md

@@ -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 @@

4

package.json
{
"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

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