Skip to content

Commit 01b5894

Browse files
committed
#5380 - Upgrade dependencies
- Fix circular dependency in PDF editor causing problems after upgrading esbuild - Require ES2019 instead of 2018
1 parent e797dc6 commit 01b5894

File tree

59 files changed

+429
-180
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+429
-180
lines changed

inception/inception-assistant/src/main/ts/build.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const defaults = {
4848
bundle: true,
4949
sourcemap: true,
5050
minify: !argv.live,
51-
target: 'es2018',
51+
target: 'es2019',
5252
loader: { '.ts': 'ts' },
5353
logLevel: 'info'
5454
}

inception/inception-assistant/src/main/ts/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"lib": [
99
"DOM",
1010
"DOM.Iterable",
11-
"ES2018"
11+
"ES2019"
1212
]
1313
}
1414
}

inception/inception-assistant/src/main/ts_template/package-lock.json

Lines changed: 3 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inception/inception-brat-editor/src/main/ts/build.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const defaults = {
3636
bundle: true,
3737
sourcemap: true,
3838
minify: !argv.live,
39-
target: 'es2018',
39+
target: 'es2019',
4040
loader: { '.ts': 'ts' },
4141
logLevel: 'info',
4242
plugins: [

inception/inception-brat-editor/src/main/ts/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"lib": [
99
"DOM",
1010
"DOM.Iterable",
11-
"ES2018"
11+
"ES2019"
1212
]
1313
}
1414
}

inception/inception-brat-editor/src/main/ts_template/package-lock.json

Lines changed: 3 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inception/inception-build/src/main/resources/inception/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"lib": [
99
"DOM",
1010
"DOM.Iterable",
11-
"ES2018"
11+
"ES2019"
1212
]
1313
}
1414
}

inception/inception-diam-editor/src/main/ts/build.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const defaults = {
5151
bundle: true,
5252
sourcemap: true,
5353
minify: !argv.live,
54-
target: 'es2018',
54+
target: 'es2019',
5555
loader: { '.ts': 'ts' },
5656
logLevel: 'info'
5757
}

inception/inception-diam-editor/src/main/ts/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"lib": [
99
"DOM",
1010
"DOM.Iterable",
11-
"ES2018"
11+
"ES2019"
1212
]
1313
}
1414
}

inception/inception-diam-editor/src/main/ts_template/package-lock.json

Lines changed: 3 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inception/inception-diam/src/main/ts/build.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const defaults = {
3636
bundle: true,
3737
sourcemap: true,
3838
minify: !argv.live,
39-
target: 'es2018',
39+
target: 'es2019',
4040
loader: { '.ts': 'ts' },
4141
logLevel: 'info'
4242
}

inception/inception-diam/src/main/ts/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"lib": [
99
"DOM",
1010
"DOM.Iterable",
11-
"ES2018"
11+
"ES2019"
1212
]
1313
}
1414
}

inception/inception-diam/src/main/ts_template/package-lock.json

Lines changed: 2 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inception/inception-external-editor/src/main/ts/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"lib": [
99
"DOM",
1010
"DOM.Iterable",
11-
"ES2018"
11+
"ES2019"
1212
]
1313
}
1414
}

inception/inception-external-editor/src/main/ts_template/package-lock.json

Lines changed: 3 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inception/inception-html-apache-annotator-editor/src/main/ts/build.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const defaults = {
3939
bundle: true,
4040
sourcemap: true,
4141
minify: !argv.live,
42-
target: 'es2018',
42+
target: 'es2019',
4343
loader: { '.ts': 'ts' },
4444
logLevel: 'info',
4545
plugins: [

inception/inception-html-apache-annotator-editor/src/main/ts/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"lib": [
99
"DOM",
1010
"DOM.Iterable",
11-
"ES2018"
11+
"ES2019"
1212
]
1313
}
1414
}

inception/inception-html-apache-annotator-editor/src/main/ts_template/package-lock.json

Lines changed: 2 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inception/inception-html-recogito-editor/src/main/ts/build.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const defaults = {
3939
bundle: true,
4040
sourcemap: true,
4141
minify: !argv.live,
42-
target: 'es2018',
42+
target: 'es2019',
4343
loader: { '.ts': 'ts' },
4444
logLevel: 'info',
4545
plugins: [

inception/inception-html-recogito-editor/src/main/ts/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"lib": [
99
"DOM",
1010
"DOM.Iterable",
11-
"ES2018"
11+
"ES2019"
1212
]
1313
}
1414
}

inception/inception-html-recogito-editor/src/main/ts_template/package-lock.json

Lines changed: 2 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

inception/inception-io-tei/src/main/ts/build.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const defaults = {
3636
bundle: true,
3737
sourcemap: true,
3838
minify: !argv.live,
39-
target: 'es2018',
39+
target: 'es2019',
4040
loader: { '.ts': 'ts' },
4141
logLevel: 'info',
4242
plugins: [sassPlugin()]

inception/inception-io-tei/src/main/ts/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"lib": [
99
"DOM",
1010
"DOM.Iterable",
11-
"ES2018"
11+
"ES2019"
1212
]
1313
}
1414
}

0 commit comments

Comments
 (0)