0.0.1 • Published 4 years ago

@studiobear/svelte-system-ui-components v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

Svelte System-UI Components Library

This is a sample Svelte component library initially created from the Svelte component-template.

A few things have been added:

  • Storybook: For component development fun! Seriously though, makes test-driven development natural.
  • Jest/Testing-library: In combination with above === win!!!

Demo Site - Hosted by Netlify and deployed via Semaphore CI


My Svelte Component Library

A base for building shareable Svelte components.

.
├── .storybook
├── src
│   └── components
│       ├── __tests__
│       ├── stories
│       └── ...components
├── packag.json
└── ...
  1. .storybook: configuration for Storybook and where addons, knobs, etc. are registered.
  2. src/components: Main component directory
  3. .../__tests__: Jest/Testing-library tests for components
  4. .../stories: Storybook stories

Setting up

As this sub-repo is part of a monorepo, the initial yarn and lerna bootstrap-ing will have installed and linked all necessary dependencies.

Consuming components

Your package.json has a "svelte" field pointing to src/index.js, which allows Svelte apps to import the source code directly, if they are using a bundler plugin like rollup-plugin-svelte or svelte-loader (where resolve.mainFields in your webpack config includes "svelte"). This is recommended.

For everyone else, npm run build will bundle your component's source code into a plain JavaScript module (dist/index.mjs) and a UMD script (dist/index.js). This will happen automatically when you publish your component to npm, courtesy of the prepublishOnly hook in package.json.

0.0.1

4 years ago