Skip to content
This repository has been archived by the owner on Oct 7, 2020. It is now read-only.

Commit

Permalink
chore: Publish Angular MDC v3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
trimox committed Sep 13, 2019
1 parent 98e7b39 commit 7fad67a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"url": "https://github.com/trimox/angular-mdc-web.git"
},
"license": "MIT",
"version": "3.2.0",
"version": "3.2.1",
"engines": {
"node": ">= 9.11.1"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/material-components-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "git",
"url": "https://github.com/trimox/angular-mdc-web.git"
},
"version": "3.2.0",
"version": "3.2.1",
"license": "MIT",
"keywords": [
"angular-mdc",
Expand Down
2 changes: 1 addition & 1 deletion tools/package-tools/secondary-entry-points.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ function getBuildOrder(node: BuildNode): BuildNode[] {
return [];
}

node.visited = true;
let buildOrder: BuildNode[] = [];
for (const dep of node.deps) {
buildOrder = [...buildOrder, ...getBuildOrder(dep)];
node.depth = node.deps.reduce((maxDepth, d) => Math.max(d.depth + 1, maxDepth), -1);
}

node.visited = true;
return [...buildOrder, node];
}

Expand Down

0 comments on commit 7fad67a

Please sign in to comment.