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

@coara/js-releases

v1.0.16

Published

Sharable code related to release versions for Coara projects

Downloads

306

Readme

@coara/js-releases

$ create-release

Description

Read last tag matching v[0-9].[0-9].[0-9] and taking last number as a patch version increases it by 1, then create and push a tag with that new version.

Usage

$ create-release [--dry-run]

$ overwrite-release

Description

Read last tag matching v[0-9].[0-9].[0-9] as a version, it concatenates #BUILD_NUMBER and inside the FILE_PATH search for the MACRO to be replaced with that version string.

Usage

$ overwrite-release [--file-path FILE_PATH] [--build-number BUILD_NUMBER] [--macro MACRO] [--dry-run]

# Default FILE_PATH is src/environments/environment.production.ts
# Default BUILD_NUMBER is BITBUCKET_BUILD_NUMBER || BITRISE_BUILD_NUMBER || 0
# Default MACRO is $release

Example

* In a case that we have the following structure:
    .
    └── config
        └── charts
            └── vars.yml

* vars.yml looks like this:
    variables:
        api1: https://api.com/path
        release: <RELEASE>

* We need to inject the value for that RELEASE token, the command should looks as follows:

    $ overwrite-release --file-path config/charts/vars.yml --build-number 42 --macro RELEASE

$ overwrite-changelog

Description

This script generates a json file that contains the changelog of the master branch of the repository. In addition, this information is attached to the information related to the tour ticket that refers to each commit within the changelog.

To use this script you need to create a configuration file like the following:

{
    "changelog-file-path": "changelog.json",
    "bitbucket-host": "https://____.atlassian.net",
    "bitbucket-project": "XXX",
    "custom-properties": ["custom-1", "custom-2"]
}    
$ overwrite-changelog [--config-path CONFIG_PATH] [--bitbucket-user BITBUCKET_USER] [--bitbucket-password BITBUCKET_PASSWORD]

# Default CONFIG_PATH is ./changelog-config.json

Changelog File Example

[
    {
        "hash": "7451389e07bd2f8c4444e1cc58526e3e491cc3fc",
        "commitMessage": "Merge XXX-0000 in master",
        "author": "Author Name",
        "date": "Wed, 15 Sep 2021 15:12:33 +0200",
        "jiraIssue": "XXX-0000",
        "type": "Task",
        "release": "v0.0.1",
        .
        .
        .
        "custom-1": "value",
        "custom-2": "value"
    }
]