File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -51,14 +51,16 @@ const umd = {
5151 file : "dist/jspdf.umd.js" ,
5252 format : "umd" ,
5353 name : "jspdf" ,
54- exports : "named"
54+ exports : "named" ,
55+ sourcemap : true
5556 } ,
5657 {
5758 file : "dist/jspdf.umd.min.js" ,
5859 format : "umd" ,
5960 name : "jspdf" ,
6061 plugins : [ terser ( { } ) ] ,
61- exports : "named"
62+ exports : "named" ,
63+ sourcemap : true
6264 }
6365 ] ,
6466 external : umdExternals ,
@@ -76,12 +78,14 @@ const es = {
7678 file : pkg . module . replace ( ".min" , "" ) ,
7779 format : "es" ,
7880 name : "jspdf" ,
81+ sourcemap : true ,
7982 plugins : [ ]
8083 } ,
8184 {
8285 file : pkg . module ,
8386 format : "es" ,
8487 name : "jspdf" ,
88+ sourcemap : true ,
8589 plugins : [ terser ( { } ) ]
8690 }
8791 ] ,
@@ -100,13 +104,15 @@ const node = {
100104 format : "cjs" ,
101105 name : "jspdf" ,
102106 exports : "named" ,
107+ sourcemap : true ,
103108 plugins : [ ]
104109 } ,
105110 {
106111 file : pkg . main ,
107112 format : "cjs" ,
108113 name : "jspdf" ,
109114 exports : "named" ,
115+ sourcemap : true ,
110116 plugins : [ terser ( { } ) ]
111117 }
112118 ] ,
You can’t perform that action at this time.
0 commit comments