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

@rebilly/recomponents-next

v3.0.0

Published

<p align="center"> <a href="https://rebilly.github.io/revel"> <img alt="Revel" width="300" src="https://user-images.githubusercontent.com/1580169/211651583-03750a4c-71d9-4b2f-9af8-16d48b790e06.png"> </a> </p>

Downloads

100

Readme

Revel

Design and develop clean, elegant, and performant Rebilly experiences.


About this repo

Revel is the design system used by designers and developers at Rebilly to build clean, elegant, and performant experiences for its merchants.

Commands

Install dependecies and start development

yarn && yarn docs:dev

Commands

Command | Description -|- dev | Run the dev server for the component documentation. See docs:dev. docs:dev | Run the dev server for the component documentation. docs:build | Build component documentation as a static HTML site. build | Build the library. build:watch | Build the library and rebuild on file changes. playground:dev | Run the playground dev server (see Playground). lint | Run eslint. lint:fix | Run eslint and automatically fix issues. test:unit | Run the unit tests. test:unit:watch | Run the unit tests on changed files, in watch mode.

Playground

Sometimes it is easier to test a complex configuration directly in a vue application, rather than through our vuepress documentation.

For this, we provide a playground server which can be run with:

yarn playground:dev

Note: You must copy the playground component file /src/playground/Playground-copyme.vue to Playground.vue.

Contribution guide

This package is following the Semantic Versioning specification with Conventional Commits and automated released with Semantic Release.

Pull-requests are squashed into main, and by default the title of the PR becomes the commit message. For this reason, PR titles in this repository are linted against Conventional Commits.

To create a feature, or fix an issue, create a PR into main with your fix, and ensure that the PR title follows Conventional Commits. Once approved, squash merging the PR into main will trigger Semantic Release, which will determine if a release is required based on the commit and if so automatically package and release the new version.

The following table shows examples of PR titles / main commit messages and the release they would trigger: | Commit/PR Title | Version | | - | -: | | perf(datepicker): ... | Patch release | | fix(datepicker): use margin of parent component in picker allocation | Patch release | | feat(datepicker): add option to specify picker vertical alignment | Feature release | | feat(datepicker)!: add option to specify picker vertical alignment | Breaking Release | | feat(datepicker): BREAKING CHANGE migrate from vuejs-datepicker to vue-date-picker | Breaking release |

Note: Only commit types fix, feat, perf or breaking changes will trigger a release. Types such as docs, chore, refactor will not trigger a release.