chore(deps): update dependency rollup-plugin-swc3 to v0.9.0 #11

Merged
renovate-bot merged 1 commits from renovate/rollup-plugin-swc3-0.x into main 2023-07-11 10:00:33 +02:00
Collaborator

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
rollup-plugin-swc3 0.8.2 -> 0.9.0 age adoption passing confidence

Release Notes

SukkaW/rollup-plugin-swc (rollup-plugin-swc3)

v0.9.0

Compare Source

  • Add support for bundling library for React Server Component with the proper 'use client' and 'use server' directives handling:

    • Merge duplicated directives in the final bundles
    • Multiple output chunks will have their own separated directives, useful when bundling client only code and server only code in different bundles.
    • Not enabled by default. manually opt-in by changing two lines of code in your rollup.config.js:
    // rollup.config.js
    // Import `preserveUseDirective` from `rollup-plugin-swc3`...
    - import { swc } from 'rollup-plugin-swc3';
    + import { swc, preserveUseDirective } from 'rollup-plugin-swc3';
    
    // rollup.config.js
    import { swc } from 'rollup-plugin-swc3';
    
    export default {
      input: 'xxxx',
      output: {},
      plugins: [
        swc(),
    +   preserveUseDirective()
      ];
    }
    

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [rollup-plugin-swc3](https://github.com/SukkaW/rollup-plugin-swc) | [`0.8.2` -> `0.9.0`](https://renovatebot.com/diffs/npm/rollup-plugin-swc3/0.8.2/0.9.0) | [![age](https://badges.renovateapi.com/packages/npm/rollup-plugin-swc3/0.9.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/rollup-plugin-swc3/0.9.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/rollup-plugin-swc3/0.9.0/compatibility-slim/0.8.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/rollup-plugin-swc3/0.9.0/confidence-slim/0.8.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>SukkaW/rollup-plugin-swc (rollup-plugin-swc3)</summary> ### [`v0.9.0`](https://github.com/SukkaW/rollup-plugin-swc/blob/HEAD/CHANGELOG.md#090) [Compare Source](https://github.com/SukkaW/rollup-plugin-swc/compare/0.8.2...0.9.0) - Add support for bundling library for React Server Component with the proper `'use client'` and `'use server'` directives handling: - Merge duplicated directives in the final bundles - Multiple output chunks will have their own separated directives, useful when bundling client only code and server only code in different bundles. - Not enabled by default. manually opt-in by changing two lines of code in your `rollup.config.js`: ```diff // rollup.config.js // Import `preserveUseDirective` from `rollup-plugin-swc3`... - import { swc } from 'rollup-plugin-swc3'; + import { swc, preserveUseDirective } from 'rollup-plugin-swc3'; // rollup.config.js import { swc } from 'rollup-plugin-swc3'; export default { input: 'xxxx', output: {}, plugins: [ swc(), + preserveUseDirective() ]; } ``` </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xNTkuNyIsInVwZGF0ZWRJblZlciI6IjM1LjE1OS43IiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
renovate-bot added 1 commit 2023-07-11 05:01:12 +02:00
renovate-bot force-pushed renovate/rollup-plugin-swc3-0.x from d8a2e9fb2a to ec44570918 2023-07-11 06:01:46 +02:00 Compare
renovate-bot force-pushed renovate/rollup-plugin-swc3-0.x from ec44570918 to 4675f957f2 2023-07-11 07:01:22 +02:00 Compare
renovate-bot force-pushed renovate/rollup-plugin-swc3-0.x from 4675f957f2 to ef4eda2d22 2023-07-11 08:01:48 +02:00 Compare
renovate-bot force-pushed renovate/rollup-plugin-swc3-0.x from ef4eda2d22 to 23743ca5de 2023-07-11 09:01:34 +02:00 Compare
renovate-bot merged commit 23743ca5de into main 2023-07-11 10:00:33 +02:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: dungeonslayers/tickwerk#11
No description provided.