├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── docs ├── 0.index.md ├── 1.about-us.md ├── 11.advanced │ ├── 1.watching-files.md │ └── 2.opt-in.md ├── 12.community │ ├── 1.contributing.md │ ├── 2.releases.md │ └── 3.changelog.md ├── 2.installation.md ├── 3.issues.md ├── 4.support-us.md ├── 5.links.md └── img │ └── icon.png ├── eslint.config.js ├── package.json ├── src └── index.ts └── tsconfig.json /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defstudio/vite-livewire-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defstudio/vite-livewire-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defstudio/vite-livewire-plugin/HEAD/README.md -------------------------------------------------------------------------------- /docs/0.index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defstudio/vite-livewire-plugin/HEAD/docs/0.index.md -------------------------------------------------------------------------------- /docs/1.about-us.md: -------------------------------------------------------------------------------- 1 | [replace:about-us] 2 | -------------------------------------------------------------------------------- /docs/11.advanced/1.watching-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defstudio/vite-livewire-plugin/HEAD/docs/11.advanced/1.watching-files.md -------------------------------------------------------------------------------- /docs/11.advanced/2.opt-in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defstudio/vite-livewire-plugin/HEAD/docs/11.advanced/2.opt-in.md -------------------------------------------------------------------------------- /docs/12.community/1.contributing.md: -------------------------------------------------------------------------------- 1 | [replace:contributing] 2 | -------------------------------------------------------------------------------- /docs/12.community/2.releases.md: -------------------------------------------------------------------------------- 1 | [replace:releases] 2 | -------------------------------------------------------------------------------- /docs/12.community/3.changelog.md: -------------------------------------------------------------------------------- 1 | [replace:changelog] 2 | -------------------------------------------------------------------------------- /docs/2.installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defstudio/vite-livewire-plugin/HEAD/docs/2.installation.md -------------------------------------------------------------------------------- /docs/3.issues.md: -------------------------------------------------------------------------------- 1 | [replace:issues] 2 | -------------------------------------------------------------------------------- /docs/4.support-us.md: -------------------------------------------------------------------------------- 1 | [replace:support-us] 2 | -------------------------------------------------------------------------------- /docs/5.links.md: -------------------------------------------------------------------------------- 1 | [replace:links] 2 | -------------------------------------------------------------------------------- /docs/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defstudio/vite-livewire-plugin/HEAD/docs/img/icon.png -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defstudio/vite-livewire-plugin/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defstudio/vite-livewire-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defstudio/vite-livewire-plugin/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/defstudio/vite-livewire-plugin/HEAD/tsconfig.json --------------------------------------------------------------------------------