Skip to content

Commit

Permalink
Merge pull request #1 from swup/next
Browse files Browse the repository at this point in the history
Update for swup 4
  • Loading branch information
hirasso committed Jul 26, 2023
2 parents 85bbc6d + 233d85f commit d075221
Show file tree
Hide file tree
Showing 16 changed files with 5,602 additions and 6,587 deletions.
22 changes: 0 additions & 22 deletions .github/ISSUE_TEMPLATE/issue-template.md

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 12
registry-url: https://registry.npmjs.org/
node-version: 16
registry-url: https://registry.npmjs.org
- run: npm ci
- run: npm publish --access public
env:
Expand Down
35 changes: 35 additions & 0 deletions .github/workflows/version-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# This workflow bumps the package.json version and creates a PR

name: Update package version

on:
workflow_dispatch:
inputs:
segment:
description: 'Semver segment to update'
required: true
default: 'patch'
type: choice
options:
- minor
- patch

jobs:
update-version:
name: Update package version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- run: echo "Updating ${{ inputs.segment }} version"
- name: Update version
run: npm --no-git-tag-version version ${{ inputs.segment }}
- uses: peter-evans/create-pull-request@v4
with:
base: 'master'
branch: 'version/automated'
title: 'Update package version (automated)'
commit-message: 'Update package version'
body: 'Automated update to ${{ inputs.segment }} version'
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ wiki-wishlist
*.sublime-workspace
.editorconfig
.idea
lib
/plugins
/dist
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
Expand Down
16 changes: 0 additions & 16 deletions .npmignore

This file was deleted.

19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Changelog

<!-- ## [Unreleased] -->

## [2.0.0] - 2023-07-26

- Switch to microbundle
- Export native ESM module
- Update for swup 4 compatibility
- Include query params in location key

## [1.0.0] - 2021-06-07

- Initial release

[Unreleased]: https://github.com/swup/livewire-plugin/compare/2.0.0...HEAD

[2.0.0]: https://github.com/swup/livewire-plugin/releases/tag/2.0.0
[1.0.0]: https://github.com/swup/livewire-plugin/releases/tag/1.0.0
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Swup Livewire Plugin

A [swup](https://swup.js.org) plugin for integrating [Laravel Livewire](https://laravel-livewire.com/).

Re-initialize Livewire components after each page change.

## Installation

Install the plugin from npm and import it into your bundle.

```bash
npm install @swup/livewire-plugin
```

```js
import SwupLivewirePlugin from '@swup/livewire-plugin';
```

Or include the minified production file from a CDN:

```html
<script src="https://unpkg.com/@swup/livewire-plugin@2"></script>
```

## Usage

To run this plugin, include an instance in the swup options.

```javascript
const swup = new Swup({
plugins: [new SwupLivewirePlugin()]
});
```
Loading

0 comments on commit d075221

Please sign in to comment.