Skip to content

Commit c5043e1

Browse files
committed
fixed esm export
1 parent d69a934 commit c5043e1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

dist/bitset.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bitset.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -982,5 +982,5 @@ BitSet['Random'] = function (n) {
982982
return s;
983983
};
984984
export {
985-
BitSet as default
985+
BitSet as default, BitSet
986986
};

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bitset",
33
"title": "BitSet",
4-
"version": "5.2.1",
4+
"version": "5.2.2",
55
"homepage": "https://raw.org/article/javascript-bit-array/",
66
"bugs": "https://github.com/rawify/BitSet.js/issues",
77
"description": "A performance optimized infinite bit vector library",
@@ -60,7 +60,7 @@
6060
"test": "mocha tests/*.js"
6161
},
6262
"devDependencies": {
63-
"crude-build": "^0.0.3",
63+
"crude-build": "^0.0.4",
6464
"mocha": "*"
6565
}
6666
}

src/bitset.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license BitSet v5.2.1 10/5/2024
2+
* @license BitSet v5.2.2 10/6/2024
33
* https://raw.org/article/javascript-bit-array/
44
*
55
* Copyright (c) 2024, Robert Eisele (https://raw.org/)

0 commit comments

Comments
 (0)