Skip to content

Commit 42569b0

Browse files
authoredApr 24, 2024··
meta: setup monorepo (#208)
1 parent 7135de9 commit 42569b0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+693
-161
lines changed
 

‎.github/workflows/release.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
cache: pnpm
1919

2020
- run: pnpm install
21-
- run: pnpm build
22-
- run: cd build && zip -r svelte-devtools *
21+
- run: cd workspace/extension && pnpm build
22+
- run: cd workspace/extension/build && zip -r svelte-devtools *
2323

2424
- uses: actions/upload-artifact@v3
2525
with:
2626
name: extension-${{ github.sha }}
27-
path: build/svelte-devtools.zip
27+
path: workspace/extension/build/svelte-devtools.zip
2828

2929
# publish:
3030
# runs-on: ubuntu-latest

‎.gitignore

-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
node_modules
2-
/build
32

43
.DS_Store
54
.cache
65
.env
7-
8-
# generated files
9-
static/courier.js

0 commit comments

Comments
 (0)
Please sign in to comment.