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

js-release

Package Overview
Dependencies
Maintainers
3
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-release

Tool to create releases on github

  • 0.5.11
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

js-release

Comment l'utiliser ?

  • Aides, commandes et options : node cli help (or other)
  • Afficher le changelog, c'est à dire les commits de merge depuis la dernière release : node cli changelog
  • Créer une release, mode interactif : node cli add (patch|minor|major)
  • Créer une release initiale, mode interactif : node cli init

Scripts pré release / post release

Il est possible d'exécuter un script :

  • après la confirmation de la création d'une release
  • après la création de la release
  • afficher un changelog personnalisé (string ou fonction, prenant en paramètre la version courante)

par défaut le changelog sera le suivant: git log --merges --pretty='* %b (%h)' ${registry.currentVersion}..HEAD


Ajouter un fichier .release.js à la racine du projet:

module.exports = {
  preRelease: 'touch foo && git add foo && git commit -m "chore(deploy): update"',
  postRelease: 'echo "release creation succeeded"',
  changelogCmd: 'git log'
};

Keywords

FAQs

Package last updated on 11 Feb 2019

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