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

[ci] release #9802

Merged
merged 1 commit into from
Jan 26, 2024
Merged

[ci] release #9802

merged 1 commit into from
Jan 26, 2024

Conversation

astrobot-houston
Copy link
Contributor

@astrobot-houston astrobot-houston commented Jan 24, 2024

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@astrojs/[email protected]

Minor Changes

  • #9751 1153331cbbaa66a88645d15c6e949432210d4acc Thanks @florian-lefebvre! - Allows extending Alpine using the new entrypoint configuration

    You can extend Alpine by setting the entrypoint option to a root-relative import specifier (for example, entrypoint: "/src/entrypoint").

    The default export of this file should be a function that accepts an Alpine instance prior to starting, allowing the use of custom directives, plugins and other customizations for advanced use cases.

    // astro.config.mjs
    import { defineConfig } from 'astro/config';
    import alpine from '@astrojs/alpinejs';
    
    export default defineConfig({
      // ...
      integrations: [alpine({ entrypoint: '/src/entrypoint' })],
    });
    // src/entrypoint.ts
    import type { Alpine } from 'alpinejs'
    
    export default (Alpine: Alpine) => {
        Alpine.directive('foo', el => {
            el.textContent = 'bar';
        })
    }

@astrojs/[email protected]

Minor Changes

[email protected]

Patch Changes

@astrojs/[email protected]

Patch Changes

[email protected]

Patch Changes

@astrojs/[email protected]

Patch Changes

@github-actions github-actions bot added the pkg: example Related to an example package (scope) label Jan 24, 2024
@github-actions github-actions bot force-pushed the changeset-release/main branch 26 times, most recently from 3ffe310 to b6fcf71 Compare January 25, 2024 19:41
@florian-lefebvre florian-lefebvre linked an issue Jan 26, 2024 that may be closed by this pull request
1 task
@ematipico ematipico merged commit 8281ebd into main Jan 26, 2024
@ematipico ematipico deleted the changeset-release/main branch January 26, 2024 13:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pkg: example Related to an example package (scope)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Astro.cookies.set() not adding cookie in vercel adapter
2 participants