Skip to content

Commit a106804

Browse files
committed
Make knip happy
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
1 parent 4bb17fb commit a106804

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
working-directory: apps/web
6767
env:
6868
CI_PACKAGE: true
69-
run: VERSION=$(scripts/get-version-from-git.sh) pnpm build
69+
run: VERSION=$(scripts/get-version-from-git.sh) pnpm run build
7070

7171
- name: Upload Artifact
7272
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7

.github/workflows/end-to-end-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
env:
7777
CI_PACKAGE: true
7878
working-directory: apps/web
79-
run: VERSION=$(scripts/get-version-from-git.sh) pnpm build
79+
run: VERSION=$(scripts/get-version-from-git.sh) pnpm run build
8080

8181
- name: Upload Artifact
8282
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7

apps/web/src/@types/commonmark.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ declare module "commonmark" {
1212
export type Attr = [key: string, value: string];
1313

1414
/* eslint-disable @typescript-eslint/naming-convention */
15-
export interface HtmlRenderer {
15+
interface HtmlRenderer {
1616
// As far as @types/commonmark is concerned, these are not public, so add them
1717
// https://github.com/commonmark/commonmark.js/blob/master/lib/render/html.js#L272-L296
1818
text: (this: commonmark.HtmlRenderer, node: commonmark.Node) => void;

knip.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export default {
1111
// Used in playwright-screenshots.sh
1212
"wait-on",
1313
],
14+
ignoreBinaries: ["awk"],
1415
},
1516
"apps/web": {
1617
entry: [

0 commit comments

Comments
 (0)