Skip to content

Commit 997beca

Browse files
committed
fix: error message format
1 parent 24c5bbc commit 997beca

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

plugin/src/helpers/verification.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import process from 'process'
22

3-
import { yellowBright, redBright } from 'chalk'
3+
import { yellowBright, blueBright } from 'chalk'
44
import { stripIndent } from 'common-tags'
55
import { existsSync, promises } from 'fs-extra'
66
import { async as StreamZip } from 'node-stream-zip'
@@ -39,7 +39,8 @@ export const checkZipSize = async (
3939
)}, which is larger than the recommended maximum size of ${prettyBytes(
4040
warningSize,
4141
)}. This will fail the build if the unzipped size is bigger than the maximum size of ${prettyBytes(
42-
maxSize.
42+
maxSize,
43+
)}
4344
There are a few reasons this could happen, such as accidentally bundling a large dependency or adding lots of files to "included_files".
4445
`),
4546
)

0 commit comments

Comments
 (0)