Skip to content

Commit c90bba2

Browse files
authoredDec 26, 2024··
fix(dts-plugin): auto inject compiler output path to avoid duplicate zip file (#3401)
1 parent a1d46b7 commit c90bba2

File tree

6 files changed

+26
-4
lines changed

6 files changed

+26
-4
lines changed
 

‎.changeset/lemon-turkeys-happen.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@module-federation/dts-plugin': patch
3+
---
4+
5+
fix(dts-plugin): auto inject compiler output path to avoid duplicate zip file

‎packages/dts-plugin/src/core/configurations/remotePlugin.test.ts

+2
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ describe('hostPlugin', () => {
7878
implementation: '',
7979
generateAPITypes: false,
8080
context: process.cwd(),
81+
outputDir: '',
8182
abortOnError: true,
8283
extractRemoteTypes: false,
8384
extractThirdParty: false,
@@ -141,6 +142,7 @@ describe('hostPlugin', () => {
141142
generateAPITypes: false,
142143
implementation: '',
143144
context: process.cwd(),
145+
outputDir: '',
144146
abortOnError: true,
145147
extractRemoteTypes: false,
146148
extractThirdParty: false,

‎packages/dts-plugin/src/core/configurations/remotePlugin.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ const defaultOptions = {
2222
abortOnError: true,
2323
extractRemoteTypes: false,
2424
extractThirdParty: false,
25+
outputDir: '',
2526
} satisfies Partial<RemoteOptions>;
2627

2728
function getEffectiveRootDir(
@@ -59,6 +60,7 @@ const readTsConfig = (
5960
compiledTypesFolder,
6061
context,
6162
additionalFilesToCompile,
63+
outputDir,
6264
}: Required<RemoteOptions>,
6365
mapComponentsToExpose: Record<string, string>,
6466
): TsConfigJson => {
@@ -84,7 +86,7 @@ const readTsConfig = (
8486

8587
const outDir = resolve(
8688
context,
87-
configContent.options.outDir || 'dist',
89+
outputDir || configContent.options.outDir || 'dist',
8890
typesFolder,
8991
compiledTypesFolder,
9092
);

‎packages/dts-plugin/src/core/interfaces/RemoteOptions.ts

+1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ export interface RemoteOptions extends moduleFederationPlugin.DtsRemoteOptions {
55
context?: string;
66
implementation?: string;
77
hostRemoteTypesFolder?: string;
8+
outputDir?: string;
89
}

‎packages/dts-plugin/src/plugins/DevPlugin.ts

+4
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,10 @@ export class DevPlugin implements WebpackPluginInstance {
191191
? undefined
192192
: normalizedDtsOptions.implementation,
193193
context: compiler.context,
194+
outputDir: path.relative(
195+
compiler.context,
196+
compiler.outputPath || compiler.options.output.path,
197+
),
194198
moduleFederationConfig: {
195199
...this._options,
196200
},

‎packages/dts-plugin/src/plugins/GenerateTypesPlugin.ts

+11-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import {
1010
generateTypes,
1111
generateTypesInChildProcess,
1212
retrieveTypesAssetsInfo,
13+
type DTSManagerOptions,
1314
} from '../core/index';
1415
import path from 'path';
1516

@@ -42,10 +43,14 @@ export class GenerateTypesPlugin implements WebpackPluginInstance {
4243
return;
4344
}
4445

45-
const finalOptions = {
46+
const finalOptions: DTSManagerOptions = {
4647
remote: {
4748
implementation: dtsOptions.implementation,
4849
context: compiler.context,
50+
outputDir: path.relative(
51+
compiler.context,
52+
compiler.outputPath || compiler.options.output.path,
53+
),
4954
moduleFederationConfig: pluginOptions,
5055
...normalizedGenerateTypes,
5156
},
@@ -74,8 +79,11 @@ export class GenerateTypesPlugin implements WebpackPluginInstance {
7479
const generateTypesFn = getGenerateTypesFn();
7580
let compiledOnce = false;
7681

77-
const emitTypesFiles = async () => {
82+
const emitTypesFilesDev = async () => {
7883
try {
84+
if (!isDev()) {
85+
return;
86+
}
7987
const { zipTypesPath, apiTypesPath, zipName, apiFileName } =
8088
retrieveTypesAssetsInfo(finalOptions.remote);
8189

@@ -166,7 +174,7 @@ export class GenerateTypesPlugin implements WebpackPluginInstance {
166174
}
167175

168176
if (compiledOnce) {
169-
emitTypesFiles();
177+
emitTypesFilesDev();
170178
return;
171179
}
172180

0 commit comments

Comments
 (0)
Please sign in to comment.