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

qlu-20-ui-library

v1.4.10

Published

Welcome to the project! This document provides an overview of the workflow and how to use the Changeset feature to manage versioning, changelogs, and releases.

Downloads

1,599

Readme

QLU UI Library

Welcome to the project! This document provides an overview of the workflow and how to use the Changeset feature to manage versioning, changelogs, and releases.

Workflow Overview

Semantic Versioning

Changesets in this project follow semantic versioning conventions. The version number format is major.minor.patch, where:

  • Patch: Backwards-compatible bugfix
  • Minor: Backwards-compatible feature
  • Major: Any change that isn't backwards compatible

GitHub Action

A GitHub Action has been set up to run every time a commit is made to the main branch(when the PR will be merged). If the commit includes a "changeset," it will open or update a release pull request (PR) summarizing changes not yet in the latest release. The PR includes the following changes:

  1. Removal of all "changeset" markdown files
  2. Package version bump based on changesets
  3. Changelog entries for each "changeset"
  4. The next package version is automatically determined by analyzing all "changeset" entries. If there are multiple minor changes, only one minor release is bumped. The same logic applies to a mix of version types; the most significant version is bumped.

Creating a Changeset

You should include the changeset in your PR if the changes in your PR are to be published. To create a "changeset," run the following command:

npx changeset

Follow the prompts to choose the type of version change (patch, minor, or major) and provide a description of the change. The description will appear in the changelog upon release. A new markdown file will be created in the .changeset folder.

Example Workflow

  1. Developer makes changes and runs npx changeset to create a "changeset" describing the change in the branch you're working on.
  2. Developer pushed the branch to origin and creates a PR for the main branch.
  3. Developers adds a required reviewer of their PR.
  4. When PR is merged, GitHub Action runs, opens or updates a release PR.
  5. Release PR includes version bump, changelog entries, and removal of "changeset" files.
  6. On merging the release PR to trigger automatic package publishing to NPM.

Conclusion

With this workflow, manual calculation of package versions is a thing of the past. Enjoy the streamlined process of managing releases and versioning in your project!