Skip to content

Commit 63774b5

Browse files
committed
Added bundlemon
1 parent 45ec5bf commit 63774b5

File tree

4 files changed

+199
-341
lines changed

4 files changed

+199
-341
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -921,6 +921,10 @@ jobs:
921921
env:
922922
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
923923

924+
- name: BundleMon
925+
if: github.event_name != 'workflow_dispatch'
926+
run: pnpm bundlemon
927+
924928
############ TRIGGER QWIKCITY E2E TEST ############
925929
trigger-qwikcity-e2e:
926930
name: Trigger Qwik City E2E

bundlemon.config.ts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
export default {
2+
baseDir: './dist-dev/tsc-out',
3+
groups: [
4+
{
5+
path: 'packages/create-qwik/dist/**',
6+
},
7+
{
8+
path: 'packages/qwik/dist/**',
9+
},
10+
{
11+
path: 'packages/qwik-auth/lib/**',
12+
},
13+
{
14+
path: 'packages/qwik-city/lib/**',
15+
},
16+
{
17+
path: 'packages/qwik-react/lib/**',
18+
},
19+
{
20+
path: 'packages/qwik-worker/lib/**',
21+
},
22+
{
23+
path: 'packages/supabase-auth-helpers-qwik/lib/**',
24+
},
25+
],
26+
};

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@
128128
"@vitejs/plugin-basic-ssl": "2.1.0",
129129
"all-contributors-cli": "6.26.1",
130130
"brotli": "1.3.3",
131+
"bundlemon": "^3.1.0",
131132
"create-qwik": "workspace:^",
132133
"cross-spawn": "7.0.6",
133134
"csstype": "3.1.3",

0 commit comments

Comments
 (0)