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

vamtiger-node-typescript-commit

v0.15.1

Published

Commits changes within a node.js-typescript project.

Downloads

136

Readme

VAMTIGER Node Typescript Commit

VAMTIGER Node Typescript Commit commits unsaved source code on the source branch, and merges the corresponding build into the master branch. The purpose for this commit strategy is to explore the feesibility of removing any requirement/reliance on postinstall configuration by branch-based separation of Typescript source code and the corresponding traspiled result in order to reduce install time. * The source branch is thus reserved for development. * The master branch is always derived from the source branch.

Installation

VAMTIGER Node Typescript Commit can be installed using npm or yarn:

npm i --save-dev vamtiger-node-typescript-commit

or

yarn add --dev vamtiger-node-typescript-commit

VAMTIGER Node Typescript Commit can also be installed globally:

npm i --global vamtiger-node-typescript-commit

or

yarn global vamtiger-node-typescript-commit

Usage

Customiseable options can be listed:

vamtiger-node-typescript-commit --help

VAMTIGER Node Typescript Commit can be referenced as an npm script:

{
    "scripts": {
        "commit": "vamtiger-node-typescript-commit"
    }
}

VAMTIGER Node Typescript Commit can then be executed using:

To push changes to a defined remote repository:

{
    "scripts": {
        "commit": "vamtiger-node-typescript-commit -- --push"
    }
}

* "--" before options.

The latest master build can also be published to npm:

{
    "scripts": {
        "commit": "vamtiger-node-typescript-commit -- --push --publish"
    }
}

Once defined as an npm script, VAMTIGER Node Typescript Commit can executed using:

npm run commit

A custom commit meessage can also be defined:

npm run commit --commitMessage "Some custom commit message"

Custom folder names can also be defined:

npm run commit --buildFolder "build" --sourceFolder "source" # default

TS config file can be retained:

npm run commit --keepTsConfig

If installed globally, VAMTIGER Node Typescript Commit can be run as follows:

vamtiger-node-typescript-commit --push --publish --otp 123456