We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ed826a commit 61b2956Copy full SHA for 61b2956
cli.js
@@ -140,8 +140,9 @@ try {
140
141
outputDirs.forEach(_outputDir => {
142
const _outFile = path.resolve(_outputDir, `${federationConfig.name}.d.ts`);
143
- console.log('writing typing file:', _outFile);
144
+ console.log('writing typing file:', _outFile);
145
+ fs.mkdirSync(path.dirname(_outFile), { recursive: true });
146
fs.writeFileSync(_outFile, typing);
147
148
console.debug(`using output dir: ${_outputDir}`);
0 commit comments