Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@myparcel/semantic-release-wordpress-readme-generator

Package Overview
Dependencies
Maintainers
3
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@myparcel/semantic-release-wordpress-readme-generator

Generates a readme.txt for use with WordPress plugin releases in semantic-release

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
11
increased by120%
Maintainers
3
Weekly downloads
 
Created
Source

semantic-release-wordpress-readme-generator

Generates a readme.txt for WordPress plugin releases.

Installation

With Yarn

yarn add -D @myparcel/semantic-release-wordpress-readme-generator

With PNPM

pnpm add -D @myparcel/semantic-release-wordpress-readme-generator

With NPM

npm install --save-dev @myparcel/semantic-release-wordpress-readme-generator

Usage

Add the following to your release.config.js, below the @semantic-release/changelog plugin:

const wordpressReadme = require('@myparcel/semantic-release-wordpress-readme-generator');

module.exports = {
  plugins: [
    // ...
    '@myparcel/semantic-release-wordpress-readme-generator',
  ],
};

Options

By default, this is the configuration that will be used. This defines which commits will be included in the readme, and the order in which the entries will be written.

TypePrefix
featNew:
fixFixed bug:
perfPerformance improvement:
revertReverted:

To customize this, pass an object to the plugin and override the types property:

const wordpressReadme = require('@myparcel/semantic-release-wordpress-readme-generator');

module.exports = {
  plugins: [
    // ...
    [
      '@myparcel/semantic-release-wordpress-readme-generator',
      {
        types: [
          {
            type: 'feat',
            prefix: 'Feature: ',
          },
          {
            type: 'fix',
            prefix: 'Fix: ',
          },
        ]
      }
    ],
  ],
};

FAQs

Package last updated on 11 Oct 2022

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc