Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fgribreau/design-system-skaffold

Design system base project
https://github.com/fgribreau/design-system-skaffold

design-system design-systems skaffold skaffold-example

Last synced: about 2 months ago
JSON representation

Design system base project

Awesome Lists containing this project

README

        

Design System scaffolding
=========================

Principles:

- Every components must live separately in `components/{component-name}/index.{html,css,scss,css,vue,js}` and be required separately
- Shared state (e.g. colors) must live inside `core/`

# Usage

```
npm install -s design-system-boostrap
```

Require components (from SASS) with:

```scss
@import "node_modules/design-system-boostrap/components/button";
@import "node_modules/design-system-boostrap/components/input";
// or with node-sass-package-importer

@import "~design-system-boostrap/components/button";
@import "~design-system-boostrap/components/input";
```

# Development

```
npm install
npm run serve
```