Skip to content
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

chore(rust): update all deps + fixups #6005

Merged
merged 12 commits into from
Aug 1, 2024
Merged
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
5 changes: 5 additions & 0 deletions .changeset/fresh-mugs-develop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@builder.io/qwik': minor
---

Updated SWC parser means that the optimizer now understands `import ... with` syntax and that enums are replaced with numbers where possible.
5 changes: 5 additions & 0 deletions .changeset/two-ducks-accept.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@builder.io/qwik': minor
---

The optimizer now is more strict about removing sideffects in client-side code. No module-scoped code will on the client, only QRL segments.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ jobs:
with:
lookup-only: true
path: e2e-tests-completed.txt
key: ${{ hashfiles('others-key.txt', 'starters/e2e/**/*', 'starters/apps/e2e/**/*') }}
key: ${{ hashfiles('others-key.txt', 'starters/**/*') }}

############ BUILD Qwik ############
build-qwik:
Expand Down Expand Up @@ -765,6 +765,10 @@ jobs:

- run: pnpm install --frozen-lockfile

- name: SyncPack Check
if: always()
run: pnpm run lint.syncpack

- name: Prettier Check
if: always()
run: pnpm run lint.prettier
Expand Down
Loading
Loading