Socket
Socket
Sign inDemoInstall

commit-analyzer-fail-on-no-release

Package Overview
Dependencies
482
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    commit-analyzer-fail-on-no-release

A drop-in replacement for @semantic-release/commit-analyzer that fails when no release is made


Version published
Maintainers
1
Created

Changelog

Source

v1.0.1

v1.0.0...v1.0.1 - 2021-12-16

📦 Package

  • dev: Bump @semantic-release/git from 9.0.0 to 9.0.1 acc5e58
  • dev: Bump @typescript-eslint/eslint-plugin acf2640
  • dev: Bump @typescript-eslint/eslint-plugin a6e0285
  • dev: Bump @typescript-eslint/eslint-plugin 34033b3
  • dev: Bump @typescript-eslint/eslint-plugin d50053a
  • dev: Bump @typescript-eslint/eslint-plugin f0a4aae
  • dev: Bump @typescript-eslint/eslint-plugin e9b7a0c
  • dev: Bump @typescript-eslint/eslint-plugin ae34a9d
  • dev: Bump @typescript-eslint/eslint-plugin 1e2289d
  • dev: Bump @typescript-eslint/eslint-plugin 9cf3da6
  • dev: Bump @typescript-eslint/eslint-plugin d918266
  • dev: Bump @typescript-eslint/parser from 4.25.0 to 4.26.0 854c262
  • dev: Bump @typescript-eslint/parser from 4.26.0 to 4.26.1 65f61e8
  • dev: Bump @typescript-eslint/parser from 4.26.1 to 4.28.4 92bd9be
  • dev: Bump @typescript-eslint/parser from 4.28.4 to 4.28.5 d223d1e
  • dev: Bump @typescript-eslint/parser from 4.28.5 to 4.29.0 b8ff14f
  • dev: Bump @typescript-eslint/parser from 4.29.0 to 4.29.1 9b83808
  • dev: Bump @typescript-eslint/parser from 4.29.1 to 4.29.2 5fc4faf
  • dev: Bump @typescript-eslint/parser from 4.29.2 to 4.29.3 efe8afb
  • dev: Bump @typescript-eslint/parser from 4.29.3 to 4.31.0 15c4ef8
  • dev: Bump @typescript-eslint/parser from 4.31.0 to 4.31.1 8c53b60
  • dev: Bump commitlint from 12.1.4 to 13.1.0 ab23404
  • dev: Bump eslint from 7.27.0 to 7.28.0 6afc915
  • dev: Bump eslint from 7.28.0 to 7.31.0 032c7f8
  • dev: Bump eslint from 7.31.0 to 7.32.0 31e2433
  • dev: Bump eslint-plugin-import from 2.23.4 to 2.24.0 e3025c6
  • dev: Bump eslint-plugin-import from 2.24.0 to 2.24.1 0ebc164
  • dev: Bump eslint-plugin-import from 2.24.1 to 2.24.2 8a2b824
  • dev: Bump eslint-plugin-regexp from 0.11.0 to 0.13.2 48d75b5
  • dev: Bump lint-staged from 11.0.0 to 11.1.1 36eec16
  • dev: Bump lint-staged from 11.1.1 to 11.1.2 af2f476
  • dev: Bump semantic-release from 17.4.3 to 17.4.4 3588405
  • dev: Bump semantic-release from 17.4.4 to 17.4.5 4ce850d
  • dev: Bump semantic-release from 17.4.5 to 17.4.6 68fe989
  • dev: Bump semantic-release from 17.4.6 to 17.4.7 e45e6e5
  • dev: Bump semantic-release from 17.4.7 to 18.0.1 1aeb496
  • dev: Bump sort-package-json from 1.50.0 to 1.51.0 2ae6d49
  • dev: Update linting config, dev deps d4e2d1e
  • prod: Update npm dependencies and expand peerDep range 0c95413

🧹 Internal

  • Update dependabot config and remove commitizen 1cebf65

Readme

Source
Icon

Commit Analyzer Fail on No Release

A drop-in replacement for @semantic-release/commit-analyzer that fails when no release is made

npm version check status license: MIT

Description

If you need your pipelines to fail if no release will be created with semantic-release, drop this plugin into your config.

Installation

npm install --save-dev commit-analyzer-fail-on-no-release

Usage

In your semantic-release configuration file, replace the default commit analyzer with commit-analyzer-fail-on-no-release. All configuration options pass through to the default plugin.

.releaserc

 {
   "plugins": [
     [
-      "@semantic-release/commit-analyzer",
+      "commit-analyzer-fail-on-no-release",
       {
         "preset": "angular",
         "releaseRules": [
           {"type": "docs", "scope":"README", "release": "patch"},
           {"type": "refactor", "release": "patch"},
           {"type": "style", "release": "patch"}
         ],
         "parserOpts": {
           "noteKeywords": ["BREAKING CHANGE", "BREAKING CHANGES"]
         }
       }
     ]
   ]
 }

License

Copyright Evelyn Hathaway, MIT License

Keywords

FAQs

Last updated on 16 Dec 2021

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc