We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2da34f commit 5849691Copy full SHA for 5849691
2 files changed
CHANGELOG.md
@@ -3,6 +3,8 @@
3
- Fix a rare glitch in the lasso selection where the lasso would be drawn with a far away point
4
- Smoothify lasso by lowering the min delay and min dist
5
- Update 2D camera and many dev packages
6
+- Remove the minified ESM build as it's unnecessary
7
+- Cherry pick gl-matrix modules to reduce the bundle size
8
9
**v0.7.3**
10
src/index.js
@@ -3,7 +3,8 @@ import KDBush from 'kdbush';
import createPubSub from 'pub-sub-es';
import withThrottle from 'lodash-es/throttle';
import withRaf from 'with-raf';
-import { mat4, vec4 } from 'gl-matrix';
+import * as mat4 from 'gl-matrix/mat4';
+import * as vec4 from 'gl-matrix/vec4';
import createLine from 'regl-line';
import createScroll from 'scroll-speed';
0 commit comments