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

@khala/npm-release-monorepo

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@khala/npm-release-monorepo

Commit analyzer for semantic-release based on wildcards monorepos

  • 2.5.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
16
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

Monorepo npm release

Monorepo npm release process for semantic-release.

Installation

  • Using NPM
> npm install -D @khala/npm-release-monorepo
  • Using yarn
> yarn add -D @khala/npm-release-monorepo

Then add it to your prepare and publish options

  • package.json
{
  "release": {
    "prepare": [
      {
        "path": "@khala/npm-release-monorepo"
      }
    ],
    "publish": [
      {
        "path": "@khala/npm-release-monorepo"
      }
    ]
  }
}

Options

This package will assume that you want to release packages under root folder you ran release. If you want to release packages under different folder (for instance all packages under folder plugins) you have to add folder option to any step (preferably to both prepare and publish). Or if you want to set this up globally add monorepo prop to release config.

{
  "release": {
    "prepare": [
      {
        "path": "@khala/npm-release-monorepo",
        "folder": "./plugins"
      }
    ],
    "publish": [
      {
        "path": "@khala/npm-release-monorepo",
        "folder": "./plugins"
      }
    ]
  }
}
{
  "release": {
    "monorepo": "./plugins",
    "prepare": "@khala/npm-release-monorepo",
    "publish": "@khala/npm-release-monorepo"
  }
}

Keywords

FAQs

Package last updated on 11 Mar 2021

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