evo-mark/wp-vite

Installs: 171

Dependents: 0

Suggesters: 0

Security: 0

Stars: 5

Watchers: 1

Forks: 1

Open Issues: 0

Type:wordpress-plugin

v1.0.2 2023-12-25 02:22 UTC

This package is auto-updated.

Last update: 2024-04-25 03:13:44 UTC


README

=== WP Vite ===
Tags: wordpress, vite, esbuild, development, production, build
Requires at least: 6.0
Tested up to: 6.2
Requires PHP: 8.2
License: MIT
License URI: https://mit-license.org/

Bring Vite's lightning fast build process to your Wordpress theme or plugin

== Description ==

= Usage =

Inside your plugin entry file or function.php file (for themes) simply include the following:


    use EvoMark\WpVite\WpVite;

    $vite = new WpVite;
    $vite->enqueue([
        'namespace' => 'theme-vite',
        'input' => ["src/main.js"],
    ]);


The enqueue function takes a single associative array as a parameter. Here are the properties it can contain:

1. namespace: string **Required**
-  A unique namespace for the manifest being enqueued
2. input: string | string[] **Required**
-  One or more entry files. These must match exactly the ones defined in your Vite config file
3. dependencies: string[]
-  Wordpress JS dependencies for your manifest. In production, these will be mapped to the window object
4. admin: bool
-  Enqueue the inputs for Wordpress admin pages instead of frontend

== Frequently Asked Questions ==

= Does this work with Gutenberg block development? =

No. This plugin currently does not support usage in the development of block libraries. For that, we recommend [Vite Plugin Gutenberg Blocks](https://github.com/evo-mark/vite-plugin-gutenberg-blocks).