🚨 Active Supply Chain Attack:node-ipc Package Compromised.Learn More
Socket
Book a DemoSign in
Socket

@magnolia/cli-create-block-plugin

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@magnolia/cli-create-block-plugin

A plugin for Magnolia CLI to create a block in a light module

latest
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

CreateBlockPlugin

A plugin for Magnolia CLI to create a block in a light module

Installation

Using add-plugin

  • Run the following command in the project's root directory:

    npm run mgnl -- add-plugin @magnolia/cli-create-block-plugin
    

    The command will install the plugin, and automatically register the plugin in mgnl.config.js file:

    import CreateBlockPlugin from "@magnolia/cli-create-block-plugin";
    
    export default {
      plugins: [
        new CreateBlockPlugin()
      ]
    };
    
  • To confirm that the plugin has been successfully installed, run:

    npm run mgnl -- create-block --help
    

Manually

  • Run the following command in the project's root directory:
    npm install @magnolia/cli-create-block-plugin
    
  • Manually add CreateBlockPlugin to mgnl.config.js file:
    import CreateBlockPlugin from "@magnolia/cli-create-block-plugin";
    
    export default {
      plugins: [
        new CreateBlockPlugin()
      ]
    };
    
  • To confirm that the plugin has been successfully installed, run:
    npm run mgnl -- create-block --help
    

Usage

Options

ShortLongDescription
-lm [name]--light-module [name]set the light module for the block; defaults to the directory specified in mgnl.config.js file
-pd <path>--prototype-dir <path>use the specified path to the custom prototype templates directory as the prototype source for block creation
-p [name]--prototype [name]select a prototype for block creation
-v--versionoutput the version number
-h--helpdisplay help for command

Examples

Create block

npm run mgnl -- create-block "myFooBlock"

This commands creates a new block called "myFooBlock" based on "_default" prototype. If neither the lightModulesPath nor the lightModule property exists in mgnl.config.js, the plugin will prompt you to choose each.

Create block based on "empty" prototype

npm run mgnl -- create-block "myFooBlock" --prototype "empty"

This commands creates a new block called "myFooBlock" based on "empty" prototype. If neither the lightModulesPath nor the lightModule property exists in mgnl.config.js, the plugin will prompt you to choose each.

Plugin Documentation

For detailed documentation of the plugin, please refer to Plugin Documentation

Magnolia CMS

This plugin is created to work with Magnolia CMS. For more information, please refer to Magnolia CMS Documentation

FAQs

Package last updated on 02 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts