-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backend: Upgrade dependencies. Client: Handle unsupported IE versions…
… gracefully, upgrade dependencies.
- Loading branch information
Showing
10 changed files
with
612 additions
and
607 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
|
||
<script nomodule src="https://cdn.jsdelivr.net/npm/promise-polyfill@8/dist/polyfill.min.js"></script> | ||
<script nomodule src="https://cdn.jsdelivr.net/npm/[email protected]/dist/fetch.umd.min.js"></script> | ||
<script nomodule src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd-polyfill.min.js"></script> | ||
<script nomodule src="https://cdn.jsdelivr.net/npm/mdn-polyfills/String.prototype.includes.js"></script> | ||
<script nomodule src="https://cdn.jsdelivr.net/npm/mdn-polyfills/Object.assign.js"></script> | ||
<script nomodule> | ||
(function () { | ||
var snip_ua = window.navigator.userAgent; | ||
var snip_ie = snip_ua ? snip_ua.indexOf("MSIE ") : 0; | ||
if (snip_ie > 0) { | ||
var snip_ver = parseInt(snip_ua.substring(snip_ie + 5, snip_ua.indexOf(".", snip_ie)), 10); | ||
if (snip_ver > 0 && snip_ver < 11) { | ||
alert("Versions of Internet Explorer that are no longer maintained by Microsoft \ | ||
(and therefore cannot be made secure by applying security updates) are not supported. \ | ||
Consider upgrading to IE11 or switching to Edge, Chrome or other modern browser."); | ||
} | ||
} | ||
})(); | ||
</script> | ||
<script nomodule src="https://cdn.jsdelivr.net/npm/promise-polyfill/dist/polyfill.min.js"></script> | ||
<script nomodule src="https://cdn.jsdelivr.net/npm/whatwg-fetch/dist/fetch.umd.min.js"></script> | ||
<script nomodule src="https://cdn.jsdelivr.net/npm/abortcontroller-polyfill/dist/umd-polyfill.min.js"></script> | ||
<script nomodule src="https://cdn.jsdelivr.net/npm/mdn-polyfills/String.prototype.includes.js"></script> | ||
<script nomodule src="https://cdn.jsdelivr.net/npm/mdn-polyfills/Object.assign.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,9 +104,9 @@ const getWebpackConfig = (env, argv) => { | |
"process.env.DEVELOPMENT": JSON.stringify(isProduction === false) | ||
}), | ||
new ForkTsCheckerWebpackPlugin({ | ||
tslint: false, | ||
useTypescriptIncrementalApi: true, | ||
checkSyntacticErrors: true, | ||
typescript: true, | ||
eslint: undefined, | ||
logger: { infrastructure: "console", issues: "console" } | ||
}) | ||
], | ||
devServer: { | ||
|
@@ -138,7 +138,20 @@ const getWebpackConfig = (env, argv) => { | |
chunks: [`${entryPoint}`, "vendor", "runtime"], | ||
headHtmlSnippet, | ||
links: [ | ||
"//cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.css", | ||
{ | ||
rel: "dns-prefetch", | ||
href: "//fonts.gstatic.com/" | ||
}, | ||
{ | ||
rel: "dns-prefetch", | ||
href: "//fonts.googleapis.com/" | ||
}, | ||
{ | ||
rel: "stylesheet", | ||
href: "//cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.css", | ||
integrity: "sha384-JKIDqM48bt14NZpzl9v0AP36VK2C/X6RuSPfimxpoWdSANUXblZUX1cgdQw8cZUK", | ||
crossorigin: "anonymous" | ||
}, | ||
{ | ||
href: metaOwnUrl, | ||
rel: "canonical" | ||
|
Oops, something went wrong.