File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 33https://github.com/josdejong/jsoneditor
44
55
6+ ## not yet published, version 9.1.7
7+
8+ - Fix #1206 : library bundle broken on IE 11, regression introduced in v9.1.6.
9+
10+
611## 2020-12-23, version 9.1.6
712
813- Fix #1192 : enum dropdown from a JSON schema not rendered when using
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ const webpackConfigModule = {
5555// create a single instance of the compiler to allow caching
5656const compiler = webpack ( {
5757 entry : ENTRY ,
58+ target : [ 'web' , 'es5' ] ,
5859 output : {
5960 library : 'JSONEditor' ,
6061 libraryTarget : 'umd' ,
@@ -77,6 +78,7 @@ const compiler = webpack({
7778// create a single instance of the compiler to allow caching
7879const compilerMinimalist = webpack ( {
7980 entry : ENTRY ,
81+ target : [ 'web' , 'es5' ] ,
8082 output : {
8183 library : 'JSONEditor' ,
8284 libraryTarget : 'umd' ,
You can’t perform that action at this time.
0 commit comments