Skip to content

Commit 2a354a4

Browse files
chore: update dependencies, remove lint from ci step
Signed-off-by: Henry Gressmann <[email protected]>
1 parent 89ed690 commit 2a354a4

File tree

7 files changed

+13
-16
lines changed

7 files changed

+13
-16
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,5 @@ jobs:
2626
- name: Build
2727
run: bun run build
2828

29-
- name: Lint
30-
run: bun lint
31-
3229
- name: Test
3330
run: bun test

bun.lockb

376 Bytes
Binary file not shown.

packages/lit-q/lib/index.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ describe("Mutation", () => {
3131
this.myQuery.loading
3232
? "Loading..."
3333
: this.myQuery.error
34-
? "Error!"
35-
: JSON.stringify(this.myQuery.data)
34+
? "Error!"
35+
: JSON.stringify(this.myQuery.data)
3636
}
3737
</p>
3838
<h1>My Mutation</h1>
@@ -42,8 +42,8 @@ describe("Mutation", () => {
4242
this.myMutation.loading
4343
? "Loading..."
4444
: this.myMutation.error
45-
? "Error!"
46-
: JSON.stringify(this.myMutation.data)
45+
? "Error!"
46+
: JSON.stringify(this.myMutation.data)
4747
}
4848
</p>
4949
`;

packages/lit-q/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
"devDependencies": {
3636
"lit": "^3.1.2",
37-
"@happy-dom/global-registrator": "^14.3.8"
37+
"@happy-dom/global-registrator": "^14.3.9"
3838
},
3939
"peerDependencies": {
4040
"lit": "^3.1.2"

packages/rollup-plugin-minify-template-literals/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"minify-literals": "^1.0.0"
4242
},
4343
"devDependencies": {
44-
"rollup": "^4.13.0"
44+
"rollup": "^4.13.1"
4545
},
4646
"engines": {
4747
"node": ">=20.0.0"

packages/touch-grass/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"devDependencies": {
2424
"@types/ink": "^2.0.3",
25-
"@types/react": "^18.2.71",
25+
"@types/react": "^18.2.72",
2626
"scripts": "workspace:*"
2727
},
2828
"dependencies": {

packages/ucmd/lib/types.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,17 +69,17 @@ type __GetCommandArgType<TCommandArgOptions extends CommandArgOptions> = TComman
6969
| undefined
7070
? string
7171
: TCommandArgOptions["type"] extends "number"
72-
? number
73-
: TCommandArgOptions["type"] extends "boolean"
74-
? boolean
75-
: string;
72+
? number
73+
: TCommandArgOptions["type"] extends "boolean"
74+
? boolean
75+
: string;
7676

7777
export type CommandArgValues<TCommandArguments extends CommandArgs> = {
7878
[key in keyof TCommandArguments]: TCommandArguments[key] extends Record<string, unknown>
7979
? GetCommandArgType<TCommandArguments[key]>
8080
: TCommandArguments[key] extends boolean
81-
? boolean
82-
: never;
81+
? boolean
82+
: never;
8383
};
8484

8585
export type CommandFn<TCommandArguments extends CommandArgs> = (

0 commit comments

Comments
 (0)