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

@wmde/wikibase-vuejs-components

v0.1.9

Published

A Vue.js component library used in Wikibase projects, inspired by OOUI.

Downloads

7

Readme

Wikibase Vue.js Components

A Vue.js component library used in Wikibase projects, inspired by OOUI.

Usage

Installation

Run npm i --save @wmde/wikibase-vuejs-components and ensure you have all necessary peer dependencies installed.

Import

In your style entry point(s), e.g. _main.scss, add

@import '~@wmde/wikibase-vuejs-components/dist/wikibase-vuejs-components.css';

This will import styles for all components included in the library.

Then you can import components, e.g.

import { IndeterminateProgressBar } from '@wmde/wikibase-vuejs-components';

Storybook

You can see the available components and their usage examples at the storybook on doc.wikimedia.org, which is automatically built from the master branch.

Building Docker image

# ensure the node user uses your user id, so you own generated files
docker-compose build --build-arg UID=$(id -u) --build-arg GID=$(id -g) node

# install npm dependencies
docker-compose run --rm node npm install

Development

Run all code quality tools

  • docker-compose run --rm node npm test

Run code quality tools individually

  • docker-compose run --rm node npm run test:unit runs all unit tests
  • docker-compose run --rm node npm run test:lint for linting, docker-compose run --rm node npm run fix for fixing auto-fixable lint errors

Developing with Storybook

There are storybook previews of all components, and new stories should be added for any newly added components. You can run the storybook as follows: docker-compose up storybook

Release a new version

  1. Bump the version number in package.json and package-lock.json. You can either edit both files manually, or only edit package.json and let npm install update the lock file.
  2. Commit the version number change. The usual commit message is “Bump version to new version”.
  3. Push it to Gerrit, and wait for it to be reviewed and merged.
  4. Create a new tag, named after the version number with a “v” prefix, e. g. v1.2.3. If you feel like it, you can include a message indicating the changes since the last version (git tag -a v1.2.3), but it can also be a lightweight tag (git tag v1.2.3).
  5. Push the tag to Gerrit. It will be automatically mirrored to GitHub, where it will trigger a workflow which will automatically publish the release to NPM.