File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @vanilla-extract/css ' : patch
3+ ---
4+
5+ Fix identfiers not respecting ` NODE_ENV ` for SSR builds
Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ export const mockAdapter: Adapter = {
66 onEndFileScope : ( ) => { } ,
77 registerComposition : ( ) => { } ,
88 markCompositionUsed : ( ) => { } ,
9- getIdentOption : ( ) => 'debug' ,
9+ getIdentOption : ( ) =>
10+ process . env . NODE_ENV === 'production' ? 'short' : 'debug' ,
1011} ;
1112
1213const adapterStack : Array < Adapter > = [ mockAdapter ] ;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const config: PlaywrightTestConfig = {
55 updateSnapshots : 'none' ,
66 expect : {
77 toMatchSnapshot : {
8- threshold : 0.1 ,
8+ threshold : 0.2 ,
99 } ,
1010 } ,
1111
You can’t perform that action at this time.
0 commit comments