Skip to content

Commit 1371e72

Browse files
committed
fix: typo in "--ignore-ts-errors" flag message
Fix #28
1 parent ceda23d commit 1371e72

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Compiler/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export class Compiler {
150150
this.logger.logError('')
151151
this.logger.logError(
152152
this.logger.colors.bgRed(
153-
`Cannot complete the build process as there are typescript errors. Use "--ignore-ts-error" flag to ignore Typescript errors`
153+
`Cannot complete the build process as there are typescript errors. Use "--ignore-ts-errors" flag to ignore Typescript errors`
154154
)
155155
)
156156
}

test/compiler.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ test.group('Compiler', (group) => {
459459
stream: 'stderr',
460460
},
461461
{
462-
message: `bgRed(Cannot complete the build process as there are typescript errors. Use "--ignore-ts-error" flag to ignore Typescript errors)`,
462+
message: `bgRed(Cannot complete the build process as there are typescript errors. Use "--ignore-ts-errors" flag to ignore Typescript errors)`,
463463
stream: 'stderr',
464464
},
465465
{

0 commit comments

Comments
 (0)