Skip to content

Commit 27fb2d0

Browse files
committed
decrease max allowed circular deps to 13 🎉
1 parent 12954aa commit 27fb2d0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tasks/test_syntax.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,8 @@ function assertCircularDeps() {
176176
var circularDeps = res.circular();
177177
var logs = [];
178178

179-
// as of v1.17.0 - 2016/09/08
180179
// see https://github.com/plotly/plotly.js/milestone/9
181-
// for more details
182-
var MAX_ALLOWED_CIRCULAR_DEPS = 17;
180+
var MAX_ALLOWED_CIRCULAR_DEPS = 13;
183181

184182
if(circularDeps.length > MAX_ALLOWED_CIRCULAR_DEPS) {
185183
console.log(circularDeps.join('\n'));

0 commit comments

Comments
 (0)