mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
a8efc605ea
This commit removes access to deep imports and `zone-testing-bundle` and `zone-testing-node-bundle` This commit removed access to deep and legacy `dist` imports. `zone-testing-bundle` and `zone-testing-node-bundle` are also no longer generated. BREAKING CHANGE: Deep and legacy `dist/` imports like `zone.js/bundles/zone-testing.js` and `zone.js/dist/zone` are no longer allowed. `zone-testing-bundle` and `zone-testing-node-bundle` are also no longer part of the package. The proper way to import `zone.js` and `zone.js/testing` is: ```js import 'zone.js'; import 'zone.js/testing'; ``` PR Close #51752