Skip to content

Commit 41e6457

Browse files
committed
fix(@angular-devkit/build-angular): downlevel for await...of when targetting ES2018+
Closes #21196
1 parent 6a7bcf3 commit 41e6457

File tree

5 files changed

+47
-21
lines changed

5 files changed

+47
-21
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@
8585
"@babel/core": "7.14.6",
8686
"@babel/generator": "7.14.5",
8787
"@babel/helper-annotate-as-pure": "7.14.5",
88+
"@babel/plugin-proposal-async-generator-functions": "7.14.7",
8889
"@babel/plugin-transform-runtime": "7.14.5",
8990
"@babel/preset-env": "7.14.7",
9091
"@babel/runtime": "7.14.6",

packages/angular_devkit/build_angular/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"@babel/core": "7.14.6",
1515
"@babel/generator": "7.14.5",
1616
"@babel/helper-annotate-as-pure": "7.14.5",
17+
"@babel/plugin-proposal-async-generator-functions": "7.14.7",
1718
"@babel/plugin-transform-async-to-generator": "7.14.5",
1819
"@babel/plugin-transform-runtime": "7.14.5",
1920
"@babel/preset-env": "7.14.7",

packages/angular_devkit/build_angular/src/babel/presets/application.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,10 @@ export default function (api: unknown, options: ApplicationPresetOptions) {
181181

182182
if (options.forceAsyncTransformation) {
183183
// Always transform async/await to support Zone.js
184-
plugins.push(require('@babel/plugin-transform-async-to-generator').default);
184+
plugins.push(
185+
require('@babel/plugin-transform-async-to-generator').default,
186+
require('@babel/plugin-proposal-async-generator-functions').default,
187+
);
185188
needRuntimeTransform = true;
186189
}
187190

packages/angular_devkit/build_angular/src/browser/tests/behavior/typescript-target_spec.ts

+37-14
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,9 @@ describeBuilder(buildWebpackBrowser, BROWSER_BUILDER_INFO, (harness) => {
4343
vendorChunk: true,
4444
});
4545

46-
const { result, logs } = await harness.executeOnce();
46+
const { result } = await harness.executeOnce();
4747

4848
expect(result?.success).toBe(true);
49-
expect(logs).not.toContain(
50-
jasmine.objectContaining({
51-
message: jasmine.stringMatching('Zone.js does not support native async/await in ES2017+'),
52-
}),
53-
);
54-
5549
harness.expectFile('dist/main.js').content.not.toMatch(/\sasync\s/);
5650
harness.expectFile('dist/main.js').content.toContain('"from-async-app-function"');
5751
harness.expectFile('dist/main.js').content.toContain('"from-async-js-function"');
@@ -125,17 +119,46 @@ describeBuilder(buildWebpackBrowser, BROWSER_BUILDER_INFO, (harness) => {
125119
vendorChunk: true,
126120
});
127121

128-
const { result, logs } = await harness.executeOnce();
122+
const { result } = await harness.executeOnce();
129123

130124
expect(result?.success).toBe(true);
131-
expect(logs).not.toContain(
132-
jasmine.objectContaining({
133-
message: jasmine.stringMatching('Zone.js does not support native async/await in ES2017+'),
134-
}),
135-
);
136-
137125
harness.expectFile('dist/main.js').content.not.toMatch(/\sasync\s/);
138126
harness.expectFile('dist/main.js').content.toContain('"from-async-function"');
139127
});
128+
129+
it('downlevels "for await...of" when targetting ES2018+', async () => {
130+
await harness.modifyFile('src/tsconfig.app.json', (content) => {
131+
const tsconfig = JSON.parse(content);
132+
if (!tsconfig.compilerOptions) {
133+
tsconfig.compilerOptions = {};
134+
}
135+
tsconfig.compilerOptions.target = 'es2020';
136+
137+
return JSON.stringify(tsconfig);
138+
});
139+
140+
// Add an async function to the project
141+
await harness.writeFile(
142+
'src/main.ts',
143+
`
144+
(async () => {
145+
for await (const o of [1, 2, 3]) {
146+
console.log("for await...of");
147+
}
148+
})();
149+
`,
150+
);
151+
152+
harness.useTarget('build', {
153+
...BASE_OPTIONS,
154+
vendorChunk: true,
155+
});
156+
157+
const { result } = await harness.executeOnce();
158+
159+
expect(result?.success).toBe(true);
160+
harness.expectFile('dist/main.js').content.not.toMatch(/\sawait\s/);
161+
harness.expectFile('dist/main.js').content.toContain('"for await...of"');
162+
});
140163
});
141164
});

yarn.lock

+4-6
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,13 @@
9494

9595
"@angular/dev-infra-private@https://github.com/angular/dev-infra-private-builds.git#86a00e67800320e315821fa74bd301125d4868ca":
9696
version "0.0.0"
97-
uid "86a00e67800320e315821fa74bd301125d4868ca"
98-
resolved "https://github.com/angular/dev-infra-private-builds.git#86a00e67800320e315821fa74bd301125d4868ca"
97+
resolved "https://github.com/angular/dev-infra-private-builds.git#5879ecd963467fef55d090c45ebaddc80088107c"
9998
dependencies:
10099
"@angular/benchpress" "0.2.1"
101100
"@bazel/buildifier" "^4.0.1"
102101
"@octokit/graphql" "^4.6.1"
103-
"@octokit/rest" "^18.6.2"
104-
"@octokit/types" "^6.16.6"
102+
"@octokit/rest" "16.43.2"
103+
"@octokit/types" "^6.0.0"
105104
brotli "^1.3.2"
106105
chalk "^4.1.0"
107106
clang-format "^1.4.0"
@@ -483,7 +482,7 @@
483482
"@babel/helper-skip-transparent-expression-wrappers" "^7.14.5"
484483
"@babel/plugin-proposal-optional-chaining" "^7.14.5"
485484

486-
"@babel/plugin-proposal-async-generator-functions@^7.14.7":
485+
"@babel/plugin-proposal-async-generator-functions@7.14.7", "@babel/plugin-proposal-async-generator-functions@^7.14.7":
487486
version "7.14.7"
488487
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.7.tgz#784a48c3d8ed073f65adcf30b57bcbf6c8119ace"
489488
integrity sha512-RK8Wj7lXLY3bqei69/cc25gwS5puEc3dknoFPFbqfy3XxYQBQFvu4ioWpafMBAB+L9NyptQK4nMOa5Xz16og8Q==
@@ -10198,7 +10197,6 @@ [email protected], sass@^1.32.8:
1019810197

1019910198
"sauce-connect-proxy@https://saucelabs.com/downloads/sc-4.6.4-linux.tar.gz":
1020010199
version "0.0.0"
10201-
uid "992e2cb0d91e54b27a4f5bbd2049f3b774718115"
1020210200
resolved "https://saucelabs.com/downloads/sc-4.6.4-linux.tar.gz#992e2cb0d91e54b27a4f5bbd2049f3b774718115"
1020310201

1020410202
saucelabs@^1.5.0:

0 commit comments

Comments
 (0)