File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11auto-install-peers = false
22enable-pre-post-scripts = true
3- # TODO: Enable once public
43# provenance=true
54strict-peer-dependencies = false
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import pc from 'picocolors'
88import { isCI } from 'std-env'
99
1010// TODO: Import from Clack
11+ ////////////////////////////////////////////////////////////////////////////////////////////////
1112const unicode = isUnicodeSupported ( )
1213
1314function s ( c : string , fallback : string ) {
@@ -19,6 +20,7 @@ export const S_BAR = s('│', '|')
1920export const S_ERROR = s ( '■' , 'x' )
2021export const S_INFO = s ( '●' , '•' )
2122export const S_SUCCESS = s ( '◆' , '*' )
23+ ////////////////////////////////////////////////////////////////////////////////////////////////
2224
2325export function message ( message = '' , options : LogMessageOptions = { } ) {
2426 const { symbol = pc . gray ( S_BAR ) } = options
Original file line number Diff line number Diff line change @@ -168,10 +168,10 @@ test('getColumnType > Generated', () => {
168168 email: string;
169169 };
170170
171- export type UserSelectable = Selectable<User>;
172-
173171 export type UserInsertable = Insertable<User>;
174172
173+ export type UserSelectable = Selectable<User>;
174+
175175 export type UserUpdateable = Updateable<User>;
176176
177177 export interface DB {
You can’t perform that action at this time.
0 commit comments