npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@nona-creative/conventional-changelog-mobile-release-notes

v1.0.3

Published

A conventional changelog preset, based on the angular preset, to generate release notes in a plain text format suitable for use with Fastlane latest release notes for Testflight/Google Play

Downloads

6

Readme

Conventional Changelog - Mobile Release Notes Preset

A preset for use with conventional-changelog, which will output notes in a plain text format for use with Fastlane and Testflight or Google Play release notes.

Table of Contents

Purpose Of This Preset

When deploying mobile applications to the Play Store or Testflight, it's often useful to generate the latest release notes as plain text, so that they can be supplied as part of the what to test next notes.

This preset allows you to write these notes out to a file or files using conventional-changelog-cli, in plain text.

Usage

An example usage, after installing this package and conventional-changelog-cli could be:

npx conventional-changelog -n ./node_modules/@nona-creative/conventional-changelog-mobile-release-notes  -o ./latest-release-notes.txt -r 2

With this example, conventional-changelog-cli would write out latest-release-notes.txt with notes for the latest release to latest-release.txt with the following format.

1.2.4 - (2021-07-08)

Bug Fixes

deps: update sdks

1.2.3 - (2021-07-07)

Bug Fixes

env: fix android oauth client id

1.2.2 - (2021-07-07)

Bug Fixes

sentry: switch to other sentry (#979)

1.2.1 - (2021-07-05)

Bug Fixes

build: turn on proguard, adjust rules (#977)

⬆ back to top

Available Commands

To see a list of available commands in this package when cloning the repo run:

npm run help

⬆ back to top

Additional Docs

⬆ back to top

Quick Start For Development

  1. go through all the Prerequisites in Prerequisites
  2. npm i install NPM dependencies
  3. npm run code:build build the package

⬆ back to top

Testing

We use Jest for testing. To run unit tests, you can use one of the following commands, to run once, run in watch mode, or to run all tests and generate converage reports.

npm run test
npm run test:watch

⬆ back to top