File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/field-plugin/helpers/vite/src Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ const validateOptions = (options: unknown[]): void => {
74
74
75
75
if ( incorrectValues . length > 0 ) {
76
76
throw new Error (
77
- 'ERROR: Each option must be an object with string properties "name" and "value". The following values need to be corrected: \n ' +
77
+ 'Each option must be an object with string properties "name" and "value". The following values need to be corrected: \n ' +
78
78
incorrectValues . join ( '\n ' ) ,
79
79
)
80
80
}
Original file line number Diff line number Diff line change 1
1
import * as querystring from 'querystring'
2
- import { bold } from './utils/text'
2
+ import { red , bold } from './utils/text'
3
3
import { arrows } from './utils/arrows'
4
4
import { load , manifestExists , MANIFEST_FILE_NAME } from './manifest'
5
5
import type { Manifest } from './manifest'
@@ -58,4 +58,4 @@ const displayManifestChecking = () => {
58
58
}
59
59
60
60
const displayManifestErrorLoading = ( err : Error ) =>
61
- console . log ( `${ arrows . red } ${ bold ( `${ err . message } ` ) } ` )
61
+ console . log ( `${ arrows . red } ${ red ( `${ err . message } ` ) } ` )
You can’t perform that action at this time.
0 commit comments