File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -51,14 +51,16 @@ const umd = {
51
51
file : "dist/jspdf.umd.js" ,
52
52
format : "umd" ,
53
53
name : "jspdf" ,
54
- exports : "named"
54
+ exports : "named" ,
55
+ sourcemap : true
55
56
} ,
56
57
{
57
58
file : "dist/jspdf.umd.min.js" ,
58
59
format : "umd" ,
59
60
name : "jspdf" ,
60
61
plugins : [ terser ( { } ) ] ,
61
- exports : "named"
62
+ exports : "named" ,
63
+ sourcemap : true
62
64
}
63
65
] ,
64
66
external : umdExternals ,
@@ -76,12 +78,14 @@ const es = {
76
78
file : pkg . module . replace ( ".min" , "" ) ,
77
79
format : "es" ,
78
80
name : "jspdf" ,
81
+ sourcemap : true ,
79
82
plugins : [ ]
80
83
} ,
81
84
{
82
85
file : pkg . module ,
83
86
format : "es" ,
84
87
name : "jspdf" ,
88
+ sourcemap : true ,
85
89
plugins : [ terser ( { } ) ]
86
90
}
87
91
] ,
@@ -100,13 +104,15 @@ const node = {
100
104
format : "cjs" ,
101
105
name : "jspdf" ,
102
106
exports : "named" ,
107
+ sourcemap : true ,
103
108
plugins : [ ]
104
109
} ,
105
110
{
106
111
file : pkg . main ,
107
112
format : "cjs" ,
108
113
name : "jspdf" ,
109
114
exports : "named" ,
115
+ sourcemap : true ,
110
116
plugins : [ terser ( { } ) ]
111
117
}
112
118
] ,
You can’t perform that action at this time.
0 commit comments