File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ await writer.constructor_();
120
120
const xstring = await writer.zif_excel_writer$write_file({io_excel: excel});
121
121
return xstring;
122
122
` ;
123
- console . dir ( js ) ;
123
+ // console.dir(js);
124
124
125
125
const f = new AsyncFunction ( "abap" , js ) ;
126
126
const res = await f ( globalThis . abap ) ;
@@ -175,6 +175,7 @@ async function abapChanged() {
175
175
await sanitizeAndRun ( compiled ) ;
176
176
} catch ( error ) {
177
177
document . getElementById ( "container2" ) . innerHTML = `<u><b>Issues found during compilation or execution</b></u><br>` ;
178
+ console . dir ( error ) ;
178
179
document . getElementById ( "container2" ) . innerHTML += error . toString ( ) ;
179
180
}
180
181
}
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ module.exports = {
26
26
fallback : {
27
27
"./%23ui2%23cl_json.clas.mjs" : false ,
28
28
"buffer" : require . resolve ( "buffer/" ) ,
29
- "assert" : require . resolve ( "assert/" ) ,
29
+ "assert" : false ,
30
30
"stream" : require . resolve ( "stream-browserify" ) ,
31
31
"crypto" : false ,
32
32
"path" : require . resolve ( "path-browserify" ) ,
@@ -83,6 +83,7 @@ module.exports = {
83
83
} ) ,
84
84
new webpack . ProvidePlugin ( {
85
85
Buffer : [ "buffer" , "Buffer" ] ,
86
+ process : 'process/browser' ,
86
87
} ) ,
87
88
new CopyPlugin ( {
88
89
patterns : [
You can’t perform that action at this time.
0 commit comments