Skip to content

Commit 772845b

Browse files
committed
Consolidate bun.lock files
1 parent abea0da commit 772845b

File tree

7 files changed

+255
-506
lines changed

7 files changed

+255
-506
lines changed

.github/workflows/build-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
ref: ${{ github.event.pull_request.head.ref }}
1717
repository: ${{ github.event.pull_request.head.repo.full_name }}
1818
- uses: oven-sh/setup-bun@v2
19-
- run: cd web && bun install
19+
- run: bun install
2020
- run: cd web && bun run buildPreview
2121
- name: "upload build artifact"
2222
uses: "actions/upload-artifact@v4"

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup Bun
1515
uses: oven-sh/setup-bun@v2
1616
- name: Install frontend dependencies
17-
run: cd web && bun install
17+
run: bun install
1818
- name: Build frontend
1919
run: cd web && bun run build
2020
- name: "Deploy to Cloudflare Pages"

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ jobs:
1414
- name: Checkout Repository
1515
uses: actions/checkout@v4
1616
- uses: oven-sh/setup-bun@v2
17-
- run: cd web && bun install
17+
- run: bun install
1818
- run: cd web && bun run lint
1919
- run: cd web && bun run check
20-
- run: cd web-extension && bun install
2120
- run: cd web-extension && bun run lint

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,3 @@ db/
1313
.DS_Store
1414

1515
node_modules
16-
# TODO: figure out proper monorepo setup, installing / fixes intellij not recognizing the project for now
17-
/bun.lock

web/bun.lock renamed to bun.lock

Lines changed: 251 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web-extension/bun.lock

Lines changed: 0 additions & 475 deletions
This file was deleted.

web-extension/popup.html

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@
99
</head>
1010
<body class="w-fit p-3 text-base">
1111
<div class="flex flex-col gap-1.5 text-nowrap">
12-
<button id="open-button" type="button" class="rounded bg-blue-500 px-4 py-2 text-white hover:bg-blue-700">
13-
Open with diffs.dev
14-
</button>
12+
<button id="open-button" type="button" class="rounded bg-blue-500 px-4 py-2 text-white hover:bg-blue-700">Open with diffs.dev</button>
1513
<button id="settings-button" type="button" class="rounded bg-blue-500 px-4 py-2 text-white hover:bg-blue-700">Extension Options</button>
1614
</div>
1715
</body>

0 commit comments

Comments
 (0)