Skip to content

Commit 8a22edf

Browse files
committed
test: fix
1 parent 05c30b0 commit 8a22edf

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.npmrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
auto-install-peers=false
22
enable-pre-post-scripts=true
3-
# TODO: Enable once public
43
# provenance=true
54
strict-peer-dependencies=false

src/utils/clack.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import pc from 'picocolors'
88
import { isCI } from 'std-env'
99

1010
// TODO: Import from Clack
11+
////////////////////////////////////////////////////////////////////////////////////////////////
1112
const unicode = isUnicodeSupported()
1213

1314
function s(c: string, fallback: string) {
@@ -19,6 +20,7 @@ export const S_BAR = s('│', '|')
1920
export const S_ERROR = s('■', 'x')
2021
export const S_INFO = s('●', '•')
2122
export const S_SUCCESS = s('◆', '*')
23+
////////////////////////////////////////////////////////////////////////////////////////////////
2224

2325
export function message(message = '', options: LogMessageOptions = {}) {
2426
const { symbol = pc.gray(S_BAR) } = options

src/utils/codegen/getTypes.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)