1. shelljs-changelog
A simple script to create & update a changelog
shelljs-changelog
Package: shelljs-changelog
Created by: shelljs
Last modified: Fri, 09 Jun 2023 21:36:39 GMT
Version: 0.2.6
License: MIT
Downloads: 2,393
Repository: https://github.com/shelljs/changelog

Install

npm install shelljs-changelog
yarn add shelljs-changelog

Changelog.js

A simple NodeJS script to create & update a CHANGELOG.md

Installation and setup

 npm install --save-dev shelljs-changelog

Now, add a script to package.json like so:

   "scripts": {
    "test": "... whatever you had here before ...",
    "changelog": "shelljs-changelog"
  },

Dependencies

You'll need to have curl installed in order to use this script.

Also, make sure you have internet access when running this.

Usage example

To update the changelog, run:

 npm run changelog

For best results, try to run this after every time you publish.

Command line options

--force

By default, this script verifies that the changelog diff contains no more than
5 deletions. With --force enabled, this step is skipped.

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin