Skip to content

added bundlemon #7611

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -919,6 +919,10 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: BundleMon
if: github.event_name != 'workflow_dispatch'
run: pnpm bundlemon

############ TRIGGER QWIKCITY E2E TEST ############
trigger-qwikcity-e2e:
name: Trigger Qwik City E2E
Expand Down
26 changes: 26 additions & 0 deletions bundlemon.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
export default {
baseDir: './dist-dev/tsc-out',
groups: [
{
path: 'packages/create-qwik/**',
},
{
path: 'packages/qwik/**',
},
{
path: 'packages/qwik-auth/**',
},
{
path: 'packages/qwik-city/**',
},
{
path: 'packages/qwik-react/**',
},
{
path: 'packages/qwik-worker/**',
},
{
path: 'packages/supabase-auth-helpers-qwik/**',
},
],
};
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@
"@vitejs/plugin-basic-ssl": "2.0.0",
"all-contributors-cli": "6.26.1",
"brotli": "1.3.3",
"bundlemon": "3.1.0",
"concurrently": "8.2.2",
"create-qwik": "workspace:^",
"cross-spawn": "7.0.3",
Expand Down Expand Up @@ -211,6 +212,7 @@
"build.vite": "tsx --require ./scripts/runBefore.ts scripts/index.ts --tsc --build --api --qwikcity --eslint --platform-binding-wasm-copy",
"build.wasm": "tsx --require ./scripts/runBefore.ts scripts/index.ts --wasm",
"build.watch": "tsx --require ./scripts/runBefore.ts scripts/index.ts --build --qwikcity --watch --dev --platform-binding",
"bundlemon": "bundlemon",
"change": "changeset",
"cli": "pnpm build.cli && node packages/create-qwik/create-qwik.cjs && tsx --require ./scripts/runBefore.ts scripts/validate-cli.ts --copy-local-qwik-dist",
"cli.qwik": "pnpm build.cli && node packages/qwik/qwik-cli.cjs",
Expand Down
126 changes: 126 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading