Laravel Mix Wp Blocks Save Abandoned

adds mix.block() to Laravel Mix

Project README

Laravel Mix WP Blocks

Maintainability npm version

About

Laravel mix extension to transpile WordPress block scripts.

Installation

npm install @tinypixelco/laravel-mix-wp-blocks --save-dev
yarn add -D @tinypixelco/laravel-mix-wp-blocks

Usage

In webpack.config.js:

require("@tinypixelco/laravel-mix-wp-blocks");

mix.block("resources/assets/scripts/blocks.js", "scripts");

By doing so you'll find that you can now utilize all @wordpress scoped dependencies using ECMAScript 6 import syntax. Example:

import { RichText } from "@wordpress/block-editor";

These packages are included as webpack externals, so there is no reason to add them to your package file.

You will also find a php manifest file accompanying each script in your distribution directory. This file declares an array of dependencies based on what you've used in your scripts. Require it and you're set.

Additional Dependency Extraction Webpack Plugin options maybe be provided as a third argument to mix.block():

mix.block("resources/assets/scripts/blocks.js", "scripts", {
  outputFormat: "json",
});

Besides the plugin options there is a special flag for the common use case of turning off @babel/runtime/regenerator handling by wp-polyfill.

mix.block("resources/assets/scripts/blocks.js", "scripts", {
  disableRegenerator: true,
});
Open Source Agenda is not affiliated with "Laravel Mix Wp Blocks" Project. README Source: pixelcollective/laravel-mix-wp-blocks
Stars
32
Open Issues
4
Last Commit
6 months ago

Open Source Agenda Badge

Open Source Agenda Rating