Skip to content

Commit 3ec2c89

Browse files
authored
Specify required version of tslib ^2.0.0
The version + features of typescript used to compile this lib means that tslib needs to be at version 2.0.0 minimum. Because `antvis/algorithm` doesn't specify an explicit version, it is not guaranteed that developers receive the necessary version. This causes the following error at import time: ``` ./node_modules/@antv/algorithm/es/gaddi.js Attempted import error: '__spreadArray' is not exported from 'tslib'. ``` You can see here all the other projects updating their tslib dependencies similarly in the references to this PR: microsoft/tslib#133 This relates to antvis/G6#2702 and antvis/G6#2713 it is likely necessary, but may not be sufficient, to fix those reported issues. There could be other `antvis` packages with the same issue.
1 parent adf905b commit 3ec2c89

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/graph/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
"worker-loader": "^3.0.7"
6868
},
6969
"dependencies": {
70-
"@antv/util": "^2.0.13"
70+
"@antv/util": "^2.0.13",
71+
"tslib": "^2.0.0"
7172
}
7273
}

0 commit comments

Comments
 (0)