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

@cityelectricalfactors/ui-components

v2.13.5

Published

Running locally can cause issues with multiple versions of react/styled-components producing an error relating to invalid hook calls.

Downloads

80

Readme

Local development

Running locally can cause issues with multiple versions of react/styled-components producing an error relating to invalid hook calls.

https://github.com/facebook/react/issues/14257

As a workaround we can use a package called Yalc. If you're using Docker please follow these instructions, otherwise run the following:

  $ npm install -g yalc
  OR
  $ yarn global add yalc

  cd ui-components/
    yarn dev

  cd YOUR_PROJECT/
    yarn add @cityelectricalfactors/ui-components
    yarn install
    yalc link @cityelectricalfactors/ui-components

Installation

  yarn add @cityelectricalfactors/ui-components
  yarn add [email protected] [email protected] [email protected]

Commands

yarn dev

This builds to /dist and runs the project in watch mode so any edits you save inside src causes a rebuild to /dist.

will rebuild if you change files within src/

This will also republish to your local yalc store for to update in your project

Storybook

Run inside another terminal:

yarn storybook

This loads the stories from ./src/components/**/*.stories.tsx.

Jest

Jest tests are set up to run with npm test or yarn test.

Bundle analysis

TODO: using visualizer

Setup Files

This is the folder structure we set up for you:

/src
  /components/
    /YourComponent
      YourComponent.tsx         # EDIT THIS
      YourComponent.test.tsx    # EDIT THIS
      YourComponent.stories.tsx # EDIT THIS
      index.ts
/.storybook
  main.js
  preview.js
.gitignore
package.json
README.md                       # EDIT THIS
tsconfig.json

Rollup

uses Rollup as a bundler and generates multiple rollup configs for various module formats and build settings. See Optimizations for details.

TypeScript

tsconfig.json is set up to interpret dom and esnext types, as well as react for jsx. Adjust according to your needs.

Module Formats

CJS, ESModules, and UMD module formats are supported.

The appropriate paths are configured in package.json and dist/index.js accordingly. Please report if any issues are found.

Named Exports

Per Palmer Group guidelines, always use named exports. Code split inside your React app instead of your React library.

Including Styles

We are using Styled Components

Editing and publishing NPM module

Prerequisites

Warnings:

If you unpublish a module via NPM a module with that name can not be used again. The module will need to be renamed and version reset.

Updating

If you're updating a component, please increment the version inside the package.json.

When you publish the component yarn will prompt you to update the version number. However, you are able to do this manually if needs be. The following commands will update the version via the CLI:

  yarn version --major
  yarn version --minor
  yarn version --patch

Creates a new version by incrementing the major, minor, or patch number of the current version.

Publishing

Once you're finished building the component and your pull request has been merged to master.

You can run the CI/CD bitbucket pipelines.

From the Bitbucket UI go navigate to 'pipelines' -> 'Run branch'.

  • Select branch 'master'
  • Select pipeline 'publish-package-version'

This will run the required steps to publish to NPM

Once finished if you want to get the latest version of this in your project you will need to update your package.json file & run yarn/npm install again