juijs-graph
Advanced tools
Comparing version 0.5.0-es6 to 0.5.1-es6
{ | ||
"name": "juijs-graph", | ||
"version": "0.5.0-es6", | ||
"version": "0.5.1-es6", | ||
"sideEffects": false, | ||
@@ -5,0 +5,0 @@ "description": "SVG-based JUI chart that can be used in the browser and Node.js. Support many types of charts. (Dashboard, Map, Topology, Full 3D)", |
@@ -177,3 +177,4 @@ import jui from "juijs" | ||
_clipId = _.createId("clip-id-"); | ||
// _clipId = _.createId("clip-id-"); | ||
_clipId = "axis-clip-id"; | ||
@@ -198,3 +199,4 @@ _clipPath = chart.svg.clipPath({ | ||
_clipRectId = _.createId("clip-rect-id-"); | ||
// _clipRectId = _.createId("clip-rect-id-"); | ||
_clipRectId = "axis-clip-rect-id"; | ||
@@ -201,0 +203,0 @@ _clipRect = chart.svg.clipPath({ |
@@ -30,4 +30,3 @@ const path = require('path'); | ||
minimizer: [ | ||
new UglifyJsPlugin(), | ||
new BundleAnalyzerPlugin() | ||
new UglifyJsPlugin() | ||
] | ||
@@ -45,3 +44,6 @@ }, | ||
}] | ||
} | ||
}, | ||
plugins: [ | ||
new BundleAnalyzerPlugin() | ||
] | ||
} |
Sorry, the diff of this file is too big to display
719004
9194