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

Commit 7fad67a

Browse files
committed
chore: Publish Angular MDC v3.2.1
1 parent 98e7b39 commit 7fad67a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"url": "https://github.com/trimox/angular-mdc-web.git"
99
},
1010
"license": "MIT",
11-
"version": "3.2.0",
11+
"version": "3.2.1",
1212
"engines": {
1313
"node": ">= 9.11.1"
1414
},

packages/material-components-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "git",
88
"url": "https://github.com/trimox/angular-mdc-web.git"
99
},
10-
"version": "3.2.0",
10+
"version": "3.2.1",
1111
"license": "MIT",
1212
"keywords": [
1313
"angular-mdc",

tools/package-tools/secondary-entry-points.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@ function getBuildOrder(node: BuildNode): BuildNode[] {
6666
return [];
6767
}
6868

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

75-
node.visited = true;
7676
return [...buildOrder, node];
7777
}
7878

0 commit comments

Comments
 (0)