Skip to content

Commit 4798ec4

Browse files
alan-agius4thePunderWoman
authored andcommittedSep 6, 2023
fix(zone.js): add conditional exports to zone.js package (#51652)
This is needed to better support native ESM modules and avoid the otherwise necessary deep imports like `zone.js/fesm2015/zone-node.js` due to disallowed directory imports. PR Close #51652
1 parent fe0b793 commit 4798ec4

File tree

74 files changed

+62
-883
lines changed

Some content is hidden

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

74 files changed

+62
-883
lines changed
 

‎WORKSPACE

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ yarn_install(
7979
YARN_LABEL,
8080
"//:.yarnrc",
8181
"//tools:postinstall-patches.js",
82-
"//tools/esm-interop:patches/npm/@angular+build-tooling+0.0.0-8d4803573edc70b90a1134ffa996303d1dcc18a9.patch",
82+
"//tools/esm-interop:patches/npm/@angular+build-tooling+0.0.0-0109d498b0f6aae418ed4924a5e5c65695f0ac61.patch",
8383
"//tools/esm-interop:patches/npm/@bazel+concatjs+5.8.1.patch",
8484
"//tools/esm-interop:patches/npm/@bazel+esbuild+5.7.1.patch",
8585
"//tools/esm-interop:patches/npm/@bazel+protractor+5.7.1.patch",

‎integration/cli-elements-universal/angular.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"index": "src/index.html",
2222
"main": "src/main.ts",
2323
"polyfills": [
24-
"zone.js/dist/zone"
24+
"zone.js"
2525
],
2626
"tsConfig": "tsconfig.app.json",
2727
"aot": true,
@@ -83,7 +83,7 @@
8383
"options": {
8484
"main": "src/test.ts",
8585
"polyfills": [
86-
"zone.js/dist/zone"
86+
"zone.js"
8787
],
8888
"tsConfig": "tsconfig.spec.json",
8989
"karmaConfig": "karma.conf.js",

0 commit comments

Comments
 (0)
Please sign in to comment.