Skip to content

Commit 9a04975

Browse files
alan-agius4filipesilva
authored andcommitted
fix(@angular-devkit/build-angular): extractLicenses didn't have an effect when using server builder
1 parent 54c170b commit 9a04975

File tree

4 files changed

+62
-16
lines changed

4 files changed

+62
-16
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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 { execute } from '../../index';
10+
import { BASE_OPTIONS, SERVER_BUILDER_INFO, describeBuilder } from '../setup';
11+
12+
describeBuilder(execute, SERVER_BUILDER_INFO, (harness) => {
13+
describe('Option: "extractLicenses"', () => {
14+
it(`should generate '3rdpartylicenses.txt' when 'extractLicenses' is true`, async () => {
15+
harness.useTarget('server', {
16+
...BASE_OPTIONS,
17+
extractLicenses: true,
18+
});
19+
20+
const { result } = await harness.executeOnce();
21+
expect(result?.success).toBe(true);
22+
harness.expectFile('dist/3rdpartylicenses.txt').content.toContain('MIT');
23+
});
24+
25+
it(`should not generate '3rdpartylicenses.txt' when 'extractLicenses' is false`, async () => {
26+
harness.useTarget('server', {
27+
...BASE_OPTIONS,
28+
extractLicenses: false,
29+
});
30+
31+
const { result } = await harness.executeOnce();
32+
expect(result?.success).toBe(true);
33+
harness.expectFile('dist/3rdpartylicenses.txt').toNotExist();
34+
});
35+
36+
it(`should generate '3rdpartylicenses.txt' when 'extractLicenses' is not set`, async () => {
37+
harness.useTarget('server', {
38+
...BASE_OPTIONS,
39+
});
40+
41+
const { result } = await harness.executeOnce();
42+
expect(result?.success).toBe(true);
43+
harness.expectFile('dist/3rdpartylicenses.txt').content.toContain('MIT');
44+
});
45+
});
46+
});

packages/angular_devkit/build_angular/src/server/tests/options/source-map_spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ describeBuilder(execute, SERVER_BUILDER_INFO, (harness) => {
133133
harness.expectFile('dist/main.js').content.not.toContain('sourceMappingURL=main.js.map');
134134
});
135135

136-
it(`should not generate scripts sourceMaps when "scripts" option is true`, async () => {
136+
it(`should generate scripts sourceMaps when "scripts" option is true`, async () => {
137137
harness.useTarget('server', {
138138
...BASE_OPTIONS,
139139
sourceMap: {

packages/angular_devkit/build_angular/src/webpack/configs/browser.ts

-15
Original file line numberDiff line numberDiff line change
@@ -41,21 +41,6 @@ export function getBrowserConfig(wco: WebpackConfigOptions): webpack.Configurati
4141
);
4242
}
4343

44-
if (extractLicenses) {
45-
const LicenseWebpackPlugin = require('license-webpack-plugin').LicenseWebpackPlugin;
46-
extraPlugins.push(
47-
new LicenseWebpackPlugin({
48-
stats: {
49-
warnings: false,
50-
errors: false,
51-
},
52-
perChunkOutput: false,
53-
outputFilename: '3rdpartylicenses.txt',
54-
skipChildCompilers: true,
55-
}),
56-
);
57-
}
58-
5944
if (scriptsSourceMap || stylesSourceMap) {
6045
extraPlugins.push(
6146
getSourceMapDevTool(

packages/angular_devkit/build_angular/src/webpack/configs/common.ts

+15
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,21 @@ export function getCommonConfig(wco: WebpackConfigOptions): Configuration {
263263
);
264264
}
265265

266+
if (buildOptions.extractLicenses) {
267+
const LicenseWebpackPlugin = require('license-webpack-plugin').LicenseWebpackPlugin;
268+
extraPlugins.push(
269+
new LicenseWebpackPlugin({
270+
stats: {
271+
warnings: false,
272+
errors: false,
273+
},
274+
perChunkOutput: false,
275+
outputFilename: '3rdpartylicenses.txt',
276+
skipChildCompilers: true,
277+
}),
278+
);
279+
}
280+
266281
if (buildOptions.statsJson) {
267282
extraPlugins.push(
268283
new (class {

0 commit comments

Comments
 (0)