Skip to content

Commit e79dc29

Browse files
devversionandrewseguin
authored andcommitted
build: missing semicolon for typings re-exports (#6057)
* Adds a missing semicolon to the typing re-export statements.
1 parent 8d19d4d commit e79dc29

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tools/package-tools/typings-reexport.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ import {join} from 'path';
44

55
/** Create a typing file that links to the bundled definitions of NGC. */
66
export function createTypingsReexportFile(outDir: string, from: string, fileName: string) {
7-
writeFileSync(
8-
join(outDir, `${fileName}.d.ts`),
9-
`${buildConfig.licenseBanner}\nexport * from '${from}'`,
10-
'utf-8');
7+
writeFileSync(join(outDir, `${fileName}.d.ts`),
8+
`${buildConfig.licenseBanner}\nexport * from '${from}';\n`,
9+
'utf-8');
1110
}

0 commit comments

Comments
 (0)