-
#45
e8e18b5
Thanks @jxiwang! - chore(rrweb): fix the dist files to properly map to typescript checks -
Updated dependencies [
e8e18b5
]:- @amplitude/[email protected]
- @amplitude/[email protected]
- #43
0749d4c
Thanks @jxiwang! - Important: If you don't reference distributed files directly, for example you runimport rrweb from 'rrweb'
you won't notice a difference. If you include rrweb in a script tag and referred to a.js
file, you'll now have to update that path to include a.umd.cjs
file. Distributed files have new paths, filenames and extensions. All packages now no longer include a.js
files, instead they include.cjs
,.umd.cjs
and.mjs
files. The.umd.cjs
files are CommonJS modules that bundle all files together to make it easy to ship one file to browser environments. The.mjs
files are ES modules that can be used in modern browsers, node.js and bundlers that support ES modules. The.cjs
files are CommonJS modules that can be used in older Node.js environments.
- Updated dependencies [
becf687
,178f1e6
,3ae57a6
,0749d4c
,3ae57a6
,6676611
,3ef1e70
,4442d21
,9e9226f
]:- @amplitude/[email protected]
- @amplitude/[email protected]
- Updated dependencies [
d4dacd5
,e3c831c
]:- @amplitude/[email protected]
- @amplitude/[email protected]
- Updated dependencies [
9f0fb7c
,0983ef8
,88a15cf
,6d5cbf0
]:- @amplitude/[email protected]
- @amplitude/[email protected]
- Updated dependencies [
87cba12
,87cba12
,a1d5962
,ffdf49c
,a880f6c
,ba7f3d5
]:- @amplitude/[email protected]
- @amplitude/[email protected]
- Updated dependencies []:
- @amplitude/[email protected]
- @amplitude/[email protected]
- Updated dependencies [
5b85646
]:- @amplitude/[email protected]
- @amplitude/[email protected]
- Updated dependencies [
f876ea5
]:- @amplitude/[email protected]
- @amplitude/[email protected]
- Updated dependencies [
66c6fcb
]:- @amplitude/[email protected]
- @amplitude/[email protected]
- Updated dependencies []:
- @amplitude/[email protected]
- @amplitude/[email protected]
- Updated dependencies []:
- @amplitude/[email protected]
- @amplitude/[email protected]
- Updated dependencies []:
- @amplitude/[email protected]
- @amplitude/[email protected]
- Updated dependencies []:
- @amplitude/[email protected]
- @amplitude/[email protected]
- Updated dependencies []:
- @amplitude/[email protected]
- @amplitude/[email protected]
- Updated dependencies []:
- @amplitude/[email protected]
- @amplitude/[email protected]
- Updated dependencies [
c6600e7
]:
-
#1127
3cc4323
Thanks @YunFeng0817! - Refactor: Improve performance by 80% in a super large benchmark case.- Refactor: change the data structure of childNodes from array to linked list
- Improve the performance of the "contains" function. New algorithm will reduce the complexity from O(n) to O(logn)
-
#1126
227d43a
Thanks @YunFeng0817! - Refactor all suffix of bundled scripts with commonjs module from 'js' to cjs #1087.