Skip to content

Commit

Permalink
Fix #1206: library bundle broken on IE 11
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Dec 30, 2020
1 parent 9fbac03 commit 382d602
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions HISTORY.md
Expand Up @@ -3,6 +3,11 @@
https://github.com/josdejong/jsoneditor


## not yet published, version 9.1.7

- Fix #1206: library bundle broken on IE 11, regression introduced in v9.1.6.


## 2020-12-23, version 9.1.6

- Fix #1192: enum dropdown from a JSON schema not rendered when using
Expand Down
2 changes: 2 additions & 0 deletions gulpfile.js
Expand Up @@ -55,6 +55,7 @@ const webpackConfigModule = {
// create a single instance of the compiler to allow caching
const compiler = webpack({
entry: ENTRY,
target: ['web', 'es5'],
output: {
library: 'JSONEditor',
libraryTarget: 'umd',
Expand All @@ -77,6 +78,7 @@ const compiler = webpack({
// create a single instance of the compiler to allow caching
const compilerMinimalist = webpack({
entry: ENTRY,
target: ['web', 'es5'],
output: {
library: 'JSONEditor',
libraryTarget: 'umd',
Expand Down

0 comments on commit 382d602

Please sign in to comment.