Skip to content

Commit

Permalink
Building before release
Browse files Browse the repository at this point in the history
  • Loading branch information
rustedgrail committed Jun 28, 2024
1 parent c1d336d commit 5c1c0c8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dagre",
"version": "1.1.2",
"version": "1.1.3",
"main": [
"dist/dagre.core.js"
],
Expand Down
8 changes: 4 additions & 4 deletions dist/dagre.js
Original file line number Diff line number Diff line change
Expand Up @@ -456,12 +456,12 @@ function layout(g, opts) {
time("layout", () => {
let layoutGraph =
time(" buildLayoutGraph", () => buildLayoutGraph(g));
time(" runLayout", () => runLayout(layoutGraph, time));
time(" runLayout", () => runLayout(layoutGraph, time, opts));
time(" updateInputGraph", () => updateInputGraph(g, layoutGraph));
});
}

function runLayout(g, time) {
function runLayout(g, time, opts) {
time(" makeSpaceForEdgeLabels", () => makeSpaceForEdgeLabels(g));
time(" removeSelfEdges", () => removeSelfEdges(g));
time(" acyclic", () => acyclic.run(g));
Expand All @@ -476,7 +476,7 @@ function runLayout(g, time) {
time(" normalize.run", () => normalize.run(g));
time(" parentDummyChains", () => parentDummyChains(g));
time(" addBorderSegments", () => addBorderSegments(g));
time(" order", () => order(g));
time(" order", () => order(g, opts));
time(" insertSelfEdges", () => insertSelfEdges(g));
time(" adjustCoordinateSystem", () => coordinateSystem.adjust(g));
time(" position", () => position(g));
Expand Down Expand Up @@ -2959,7 +2959,7 @@ function zipObject(props, values) {
}

},{"@dagrejs/graphlib":29}],28:[function(require,module,exports){
module.exports = "1.1.2";
module.exports = "1.1.3";

},{}],29:[function(require,module,exports){
/**
Expand Down
4 changes: 2 additions & 2 deletions dist/dagre.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5c1c0c8

Please sign in to comment.