File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @hyperse/next-config " : patch
3
+ ---
4
+
5
+ Named export 'cyan' not found. The requested module 'picocolors'
Original file line number Diff line number Diff line change 1
- import { cyan } from 'picocolors' ;
1
+ import picocolors from 'picocolors' ;
2
2
import { type SafeParseSuccess } from 'zod' ;
3
3
4
4
/**
@@ -10,7 +10,7 @@ export const printEnv = (
10
10
section : string ,
11
11
zodSafeParseSuccess : SafeParseSuccess < Record < string , unknown > >
12
12
) => {
13
- const prefix = cyan ( '- info' . padEnd ( 7 ) ) ;
13
+ const prefix = picocolors . cyan ( '- info' . padEnd ( 7 ) ) ;
14
14
console . info ( prefix . concat ( `${ section } validation successful:` ) ) ;
15
15
for ( const [ key , value ] of Object . entries ( zodSafeParseSuccess . data ) ) {
16
16
console . info ( prefix . concat ( `${ key } =${ value } ` ) ) ;
You can’t perform that action at this time.
0 commit comments