We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd1061e commit df7c7f4Copy full SHA for df7c7f4
packages/angular_devkit/build_angular/src/utils/esbuild-targets.ts
@@ -38,7 +38,7 @@ export function transformSupportedBrowsersToTargets(supportedBrowsers: string[])
38
[version] = version.split('-');
39
40
if (esBuildSupportedBrowsers.has(browserName)) {
41
- if (browserName === 'safari' && version === 'TP') {
+ if (browserName === 'safari' && version === 'tp') {
42
// esbuild only supports numeric versions so `TP` is converted to a high number (999) since
43
// a Technology Preview (TP) of Safari is assumed to support all currently known features.
44
version = '999';
0 commit comments