Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit 7dcd97b

Browse files
chore(lint): fix implicit public
1 parent 8dcae02 commit 7dcd97b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/package-tools/build-package.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export class BuildPackage {
5858
}
5959
private _secondaryEntryPoints: string[];
6060

61-
constructor(public readonly name: string, public readonly dependencies: BuildPackage[] = []) {
61+
constructor(readonly name: string, readonly dependencies: BuildPackage[] = []) {
6262
this.sourceDir = join(packagesDir, name);
6363
this.outputDir = join(outputDir, 'packages', name);
6464
this.esm5OutputDir = join(outputDir, 'packages', name, 'esm5');

0 commit comments

Comments
 (0)