Skip to content

Commit 421417a

Browse files
clydinangular-robot[bot]
authored andcommittedFeb 13, 2023
fix(@angular-devkit/build-angular): avoid CommonJS warning for zone.js in esbuild
The `zone.js` package is currently built into a module structure form that resembles UMD-like output. This causes the CommonJS checker within the experimental esbuild-based browser application builder to issue a warning for `zone.js` usage. Until the packaging of `zone.js` is updated to become fully ESM, the `zone.js` package is automatically allowed when performing the CommonJS module check.
1 parent afcc49f commit 421417a

File tree

5 files changed

+181
-11
lines changed

5 files changed

+181
-11
lines changed
 

‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@
136136
"babel-plugin-istanbul": "6.1.1",
137137
"bootstrap": "^4.0.0",
138138
"browserslist": "4.21.5",
139+
"buffer": "6.0.3",
139140
"cacache": "17.0.4",
140141
"chokidar": "3.5.3",
141142
"copy-webpack-plugin": "11.0.0",

‎packages/angular_devkit/build_angular/BUILD.bazel

+5-1
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,11 @@ LARGE_SPECS = {
339339
"@npm//popper.js",
340340
],
341341
},
342-
"browser-esbuild": {},
342+
"browser-esbuild": {
343+
"extra_deps": [
344+
"@npm//buffer",
345+
],
346+
},
343347
}
344348

345349
[

‎packages/angular_devkit/build_angular/src/builders/browser-esbuild/commonjs-checker.ts

+4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ export function checkCommonJSModules(
3737
// Ignore Angular locale definitions which are currently UMD
3838
allowedRequests.add('@angular/common/locales');
3939

40+
// Ignore zone.js due to it currently being built with a UMD like structure.
41+
// Once the build output is updated to be fully ESM, this can be removed.
42+
allowedRequests.add('zone.js');
43+
4044
// Find all entry points that contain code (JS/TS)
4145
const files: string[] = [];
4246
for (const { entryPoint } of Object.values(metafile.outputs)) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
/**
2+
* @license
3+
* Copyright Google LLC All Rights Reserved.
4+
*
5+
* Use of this source code is governed by an MIT-style license that can be
6+
* found in the LICENSE file at https://angular.io/license
7+
*/
8+
9+
import { logging } from '@angular-devkit/core';
10+
import { buildEsbuildBrowser } from '../../index';
11+
import { BASE_OPTIONS, BROWSER_BUILDER_INFO, describeBuilder } from '../setup';
12+
13+
describeBuilder(buildEsbuildBrowser, BROWSER_BUILDER_INFO, (harness) => {
14+
describe('Option: "allowedCommonJsDependencies"', () => {
15+
describe('given option is not set', () => {
16+
for (const aot of [true, false]) {
17+
it(`should show warning when depending on a Common JS bundle in ${
18+
aot ? 'AOT' : 'JIT'
19+
} Mode`, async () => {
20+
// Add a Common JS dependency
21+
await harness.appendToFile('src/app/app.component.ts', `import 'buffer';`);
22+
23+
harness.useTarget('build', {
24+
...BASE_OPTIONS,
25+
allowedCommonJsDependencies: [],
26+
optimization: true,
27+
aot,
28+
});
29+
30+
const { result, logs } = await harness.executeOnce();
31+
32+
expect(result?.success).toBe(true);
33+
expect(logs).toContain(
34+
jasmine.objectContaining<logging.LogEntry>({
35+
message: jasmine.stringMatching(
36+
/Module 'buffer' used by 'src\/app\/app\.component\.ts' is not ESM/,
37+
),
38+
}),
39+
);
40+
expect(logs).toContain(
41+
jasmine.objectContaining<logging.LogEntry>({
42+
message: jasmine.stringMatching(/CommonJS or AMD dependencies/),
43+
}),
44+
);
45+
expect(logs).not.toContain(
46+
jasmine.objectContaining<logging.LogEntry>({
47+
message: jasmine.stringMatching('base64-js'),
48+
}),
49+
'Should not warn on transitive CommonJS packages which parent is also CommonJS.',
50+
);
51+
});
52+
}
53+
});
54+
55+
it('should not show warning when depending on a Common JS bundle which is allowed', async () => {
56+
// Add a Common JS dependency
57+
await harness.appendToFile(
58+
'src/app/app.component.ts',
59+
`
60+
import 'buffer';
61+
`,
62+
);
63+
64+
harness.useTarget('build', {
65+
...BASE_OPTIONS,
66+
allowedCommonJsDependencies: ['buffer', 'base64-js', 'ieee754'],
67+
optimization: true,
68+
});
69+
70+
const { result, logs } = await harness.executeOnce();
71+
72+
expect(result?.success).toBe(true);
73+
expect(logs).not.toContain(
74+
jasmine.objectContaining<logging.LogEntry>({
75+
message: jasmine.stringMatching(/CommonJS or AMD dependencies/),
76+
}),
77+
);
78+
});
79+
80+
it('should not show warning when depending on zone.js', async () => {
81+
// Add a Common JS dependency
82+
await harness.appendToFile(
83+
'src/app/app.component.ts',
84+
`
85+
import 'zone.js';
86+
`,
87+
);
88+
89+
harness.useTarget('build', {
90+
...BASE_OPTIONS,
91+
allowedCommonJsDependencies: [],
92+
optimization: true,
93+
});
94+
95+
const { result, logs } = await harness.executeOnce();
96+
97+
expect(result?.success).toBe(true);
98+
expect(logs).not.toContain(
99+
jasmine.objectContaining<logging.LogEntry>({
100+
message: jasmine.stringMatching(/CommonJS or AMD dependencies/),
101+
}),
102+
);
103+
});
104+
105+
it(`should not show warning when importing non global local data '@angular/common/locale/fr'`, async () => {
106+
await harness.appendToFile(
107+
'src/app/app.component.ts',
108+
`import '@angular/common/locales/fr';`,
109+
);
110+
111+
harness.useTarget('build', {
112+
...BASE_OPTIONS,
113+
allowedCommonJsDependencies: [],
114+
optimization: true,
115+
});
116+
117+
const { result, logs } = await harness.executeOnce();
118+
119+
expect(result?.success).toBe(true);
120+
expect(logs).not.toContain(
121+
jasmine.objectContaining<logging.LogEntry>({
122+
message: jasmine.stringMatching(/CommonJS or AMD dependencies/),
123+
}),
124+
);
125+
});
126+
127+
it('should not show warning in JIT for templateUrl and styleUrl when using paths', async () => {
128+
await harness.modifyFile('tsconfig.json', (content) => {
129+
return content.replace(
130+
/"baseUrl": ".\/",/,
131+
`
132+
"baseUrl": "./",
133+
"paths": {
134+
"@app/*": [
135+
"src/app/*"
136+
]
137+
},
138+
`,
139+
);
140+
});
141+
142+
await harness.modifyFile('src/app/app.module.ts', (content) =>
143+
content.replace('./app.component', '@app/app.component'),
144+
);
145+
146+
harness.useTarget('build', {
147+
...BASE_OPTIONS,
148+
allowedCommonJsDependencies: [],
149+
optimization: true,
150+
aot: false,
151+
});
152+
153+
const { result, logs } = await harness.executeOnce();
154+
155+
expect(result?.success).toBe(true);
156+
expect(logs).not.toContain(
157+
jasmine.objectContaining<logging.LogEntry>({
158+
message: jasmine.stringMatching(/CommonJS or AMD dependencies/),
159+
}),
160+
);
161+
});
162+
});
163+
});

‎yarn.lock

+8-10
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@
121121

122122
"@angular/build-tooling@https://github.com/angular/dev-infra-private-build-tooling-builds.git#f7d26a0b0d6bd2043f2d32c2a99db903539d0c07":
123123
version "0.0.0-07b0f6423e0c5266b3792d8f4af43b8fd3f3d41b"
124-
uid f7d26a0b0d6bd2043f2d32c2a99db903539d0c07
125124
resolved "https://github.com/angular/dev-infra-private-build-tooling-builds.git#f7d26a0b0d6bd2043f2d32c2a99db903539d0c07"
126125
dependencies:
127126
"@angular-devkit/build-angular" "15.2.0-next.3"
@@ -307,7 +306,6 @@
307306

308307
"@angular/ng-dev@https://github.com/angular/dev-infra-private-ng-dev-builds.git#8aa60413b3e14daf2f33a29fe9d09faa3e5bcb75":
309308
version "0.0.0-07b0f6423e0c5266b3792d8f4af43b8fd3f3d41b"
310-
uid "8aa60413b3e14daf2f33a29fe9d09faa3e5bcb75"
311309
resolved "https://github.com/angular/dev-infra-private-ng-dev-builds.git#8aa60413b3e14daf2f33a29fe9d09faa3e5bcb75"
312310
dependencies:
313311
"@yarnpkg/lockfile" "^1.1.0"
@@ -4499,6 +4497,14 @@ buffer-from@^1.0.0:
44994497
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
45004498
integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
45014499

4500+
buffer@6.0.3, buffer@^6.0.3:
4501+
version "6.0.3"
4502+
resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6"
4503+
integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==
4504+
dependencies:
4505+
base64-js "^1.3.1"
4506+
ieee754 "^1.2.1"
4507+
45024508
buffer@^5.2.1, buffer@^5.5.0:
45034509
version "5.7.1"
45044510
resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0"
@@ -4507,14 +4513,6 @@ buffer@^5.2.1, buffer@^5.5.0:
45074513
base64-js "^1.3.1"
45084514
ieee754 "^1.1.13"
45094515

4510-
buffer@^6.0.3:
4511-
version "6.0.3"
4512-
resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6"
4513-
integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==
4514-
dependencies:
4515-
base64-js "^1.3.1"
4516-
ieee754 "^1.2.1"
4517-
45184516
builtin-modules@^3.3.0:
45194517
version "3.3.0"
45204518
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6"

0 commit comments

Comments
 (0)
Please sign in to comment.