JSPM

welcome-ui

0.1.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 785
  • Score
    100M100P100Q85246F
  • License MIT

A delightful UI system from Welcome to the Jungle

Package Exports

  • welcome-ui

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (welcome-ui) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Writing components

Each component will consist of:

  • ComponentName: Folder with name of component (capitalized)
    • index.js: The React component
    • styles.js: Any related styled-components
    • README.md or docs.js: Documentation depending on Storybook or Docz
    • tests.js: Jest tests for this component

Publishing

We use semver for versioning so run one of the following when you want to publish:

  • npm version patch if there is a small (non-breaking) change (e.g. adding props to a component)
  • npm version minor if there is a larger (non-breaking) change (e.g. adding a new component)
  • npm version major if there is a breaking change (e.g. changing a component name or path)

Then run:

npm publish