Skip to content

Commit 70cd8b5

Browse files
committed
tasks: bump allowed circular dep maximum
1 parent fc93674 commit 70cd8b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks/test_syntax.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,10 @@ function assertCircularDeps() {
102102
var circularDeps = dependencyObject.circular().getArray();
103103
var logs = [];
104104

105-
// as of 2016/08/19
105+
// as of v1.17.0 - 2016/09/08
106106
// see https://github.com/plotly/plotly.js/milestone/9
107107
// for more details
108-
var MAX_ALLOWED_CIRCULAR_DEPS = 31;
108+
var MAX_ALLOWED_CIRCULAR_DEPS = 33;
109109

110110
if(circularDeps.length > MAX_ALLOWED_CIRCULAR_DEPS) {
111111
logs.push('some new circular dependencies were added to src/');

0 commit comments

Comments
 (0)