File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 3
3
## [ 0.4.2] - 2024-04-18
4
4
5
5
- Allow ` Uint32Array ` type in ` parseTable ` .
6
+ - Ensure ` apache-arrow ` is marked as an external library in Rollup
6
7
7
8
## [ 0.4.1] - 2024-01-31
8
9
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import dts from "rollup-plugin-dts";
4
4
5
5
const input = "./src/index.ts" ;
6
6
const sourcemap = true ;
7
+ const external = [ "apache-arrow" ] ;
7
8
8
9
export default [
9
10
{
@@ -14,6 +15,7 @@ export default [
14
15
sourcemap,
15
16
} ,
16
17
plugins : [ typescript ( ) ] ,
18
+ external,
17
19
} ,
18
20
{
19
21
input,
@@ -22,6 +24,7 @@ export default [
22
24
format : "es" ,
23
25
} ,
24
26
plugins : [ dts ( ) ] ,
27
+ external,
25
28
} ,
26
29
{
27
30
input,
@@ -31,6 +34,7 @@ export default [
31
34
sourcemap,
32
35
} ,
33
36
plugins : [ typescript ( ) ] ,
37
+ external,
34
38
} ,
35
39
{
36
40
input,
@@ -39,7 +43,11 @@ export default [
39
43
format : "umd" ,
40
44
name : "arrowJsFFI" ,
41
45
sourcemap,
46
+ globals : {
47
+ "apache-arrow" : "Arrow" ,
48
+ } ,
42
49
} ,
43
50
plugins : [ typescript ( ) , terser ( ) ] ,
51
+ external,
44
52
} ,
45
53
] ;
You can’t perform that action at this time.
0 commit comments