Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
rustedgrail committed Jul 17, 2024
2 parents 6d323ed + bc0f99a commit b0c45c8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
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.

2 changes: 1 addition & 1 deletion lib/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = "1.1.3";
module.exports = "1.1.4-pre";
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dagrejs/dagre",
"version": "1.1.3",
"version": "1.1.4-pre",
"description": "Graph layout for JavaScript",
"author": "Chris Pettitt <cpettitt@gmail.com>",
"contributors": [
Expand Down Expand Up @@ -49,4 +49,4 @@
"type": "git",
"url": "https://github.com/dagrejs/dagre.git"
}
}
}

0 comments on commit b0c45c8

Please sign in to comment.