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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@deviceinsight/ng-ui-basic-components

v4.0.0-alpha.2

Published

This project contains basic components and custom projects.

Downloads

365

Readme

General

This project contains basic components and custom projects.

Linking for local development

We recommend using yalc tool for linking ng-ui-basic-components. It's because yalc generates exactly the same package as it would be published to the npm registry, especially it removes files that should be ignored and their existence cause problems when we use yarn link.

Here's how to do the linking:

yarn link-local

# in the project where you want to link this library to:
yalc link "@deviceinsight/ng-ui-basic-components"

Releasing the library using git flow

Prerequisites

git flow

The git flow tools need to be installed. This depends on your operating system.

They can be also installed from the git repo: https://github.com/petervanderdoes/gitflow-avh

After git flow is installed, the repo needs to be initialized. Run git flow init and answer every question with the default (press Enter/Return).

Building a release

To build a release of this library, execute ./release.sh, which consists of the following steps:

Before the release: Check for vulnerabilities and run the tests

Vulnerabilities can occur at any time. To be sure, the pipeline for the branches and the tags created in the release process will not fail, it is wise to run the checks locally before building the release. To do this, run:

npm install
npm run scan
npm run test

Building the release

  1. Switch to develop branch and make sure both main and develop are current:

git checkout develop && git pull && git fetch origin main:main

  1. Get the upcoming release from package.json and start the release:

git flow release start $RELEASE_VERSION, e.g. git flow release start 1.2.0.

  1. Edit the version in package.json.

3.1. Edit the version in package.json, remove the -SNAPSHOT.

3.2. Commit package.json. Commit message should be Release $RELEASE_VERSION, e.g. Release 1.2.0.

  1. Finish the release:

git flow release finish

This will merge the release branch into the main branch and create a tag. It will also merge the release branch into the develop branch.

After this you should be on the develop branch.

4.1 A merge conflict might occur in package.json for the version, when main is merged into the develop branch:

Resolve it by taking the version of the develop branch. Then run npm install to resolve conflicts in package-lock.version.

Run git status to see if there are more conflicts. If there are, resolve them and git add the fixed files.

If there are no more conflicts, run git add package* and git commit.

  1. Start a new snapshot version:

5.1. Edit the version in package.json, increment the minor version (e.g., from 1.1.0 to 1.2.0) and add the -SNAPSHOT again, so that the version is e.g. 1.2.0-SNAPSHOT.

5.2. Run npm install.

5.2. Commit package.json and package-lock.json. Commit message should be Starting $NEW_SNAPSHOT_VERSION, e.g. Starting 1.2.0.

  1. Push the branches and the tag:

On branch develop:

git push git checkout main git push git push --tags git checkout develop