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

reg-keygen-git-strategy-plugin

v0.0.6

Published

Detect the snapshot key across branches to be compare with git hash.

Downloads

1,457

Readme

reg-keygen-git-strategy-plugin

A reg-suit plugin to detect base and actual commit hashes accomplishing:

  • OBJECTIVE 1: Local comparison when you are on a regular branch
  • OBJECTIVE 2: Global comparision when you are in a protected branch

OBJECTIVE 1 :: Local comparision

Basically what we want to achieve here is to compare the changes you have implemented in your actual branch against the first commit belonging to protected branches (i.e master, develop). It is important to remark we filter commits from other feature branches.

OBJECTIVE 2 :: Global comparision

Once our MR is merged, just in case other branches were merged before, we need to check images comparing with the first commit available having snapshots for avoiding or missing changes. This is done using --first-parent technique which filters commits merged from branches and only shows merge commits and regular commits done on the marked secured branch.

Usage

yarn add -D reg-keygen-git-strategy-plugin

Include it in your reg-viz config file

 "core": {
   ...
 },
 "plugins: {
   "reg-keygen-git-strategy-plugin": {
     gitLocation: '',
     referenceBranches: ['master', 'develop'],
   }
   ...
 }

Dev

You just need to install dependencies, then generate your test git folders, and finally run them:

yarn install
yarn gen:fixtures
yarn test

API

gitLocation

string (required) :: Indicates the location of the git folder. If you have the .git folder in the root of your project. Example:

options: {
  gitLocation: '', # .git folder is in the root
  gitLocation: 'test/e2e', # git folder's location path.resolve(projRootDir, "test/e2e")
  ...
}

referenceBranches

string :: Those are the main branches in your repo, needed for accomplish OBJECTIVE 2

options: {
  referenceBranches: ['master', 'develop']
}

log

boolean (required) :: If enabled we log some middle values when calculating expected base hash

options: {
  log: true
}

LICENSE

See LICENSE.MD