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

grmc

v1.2.0

Published

git release management command-line tool

Downloads

9

Readme

grmc

git release management command-line tool

npm version Build Status

Functions

  • Create Pull Request
  • Merge Pull Request
  • Create tag
  • Create Release note
    • write release note by pr list

Installation

yarn add -D grmc
npm install --save-dev grmc

Get Git Access Token

  • https://github.com/settings/tokens

git token needs the read and write auth

Create the .config/release.yml

baseUrl: https://api.github.com
token:

repo: { owner: repo_owner, name: repo_name }

branch: { master: master, develop: develop, release: release, hotfix: hotfix }

tag: { prefix: v }

release:
  {
    title:
      {
        major: major/%tag_name%,
        minor: minor/%tag_name%,
        patch: patch/%tag_name%,
      },
  }

Usage

Run Cli

$ grmc rel major -c .config/release-local.yml
🚀 Start create pr & merge process
? Do you want to create pr? (Y/n) Y
? Choose the target branch release/1.0.0
? Create PR to 'main' branch Yes
? Merge PR to 'main' branch Yes
? Create PR to 'feature/cli' branch No


======================================
Pull Request & Merge Configuration
======================================
Release Branch:      release/1.0.0

Target Branch List
  - main:            PR(Y), Merge(Y)
  - feature/cli:     PR(N), Merge(N)


? Do you want to continue? (Y/n)

Run Only Create Release Note

$ grmc rel major -c .config/release-local.yml
🚀 Start create pr & merge process
? Do you want to create pr? No

🚀 Start create tag and release note from main
⠧ Loading generate release content...

✔ generated the release note content
------------------------------------
#### Changelogs
* ci: add build script (#18) bae63f4

#### Milestone
https://github.com/gloriaJun/github-release-cli/milestone/1
------------------------------------
? Do you want to create the tag (v0.2.0 -> v0.3.0) ? Yes
✔ Success release v0.3.0 from main 🎉🎉🎉
🔗  https://github.com/gloriaJun/github-release-cli/releases/tag/v0.3.0
✨  Done in 73.98s.