GitXplorerGitXplorer
t

storybook-sass-typescript-boilerplate

public
6 stars
2 forks
0 issues

Commits

List of commits on branch master.
Unverified
bc1c5332831590255d6491426923d485abc81721

typescript fixes

tthenriquedb committed 4 years ago
Unverified
08031990bb6bbe376775424b1eb38044917d06bb

Bump version to: 0.1.1 [skip ci]

tthenriquedb committed 4 years ago
Unverified
f54889df7c74295bc8e0d5b99f45c87238380dc4

Changelog for v0.1.1 [skip ci]

tthenriquedb committed 4 years ago
Unverified
b0e2f0b5858c3b85c6961c7bb29ca9bc435baebd

fix babel configs

tthenriquedb committed 4 years ago
Unverified
ab8009e1100a09a7c1282168abae779e6cefa2e3

Bump version to: 0.1.0 [skip ci]

tthenriquedb committed 4 years ago
Unverified
cf8cf2e36805f027a9a80ea9a3d11245362e99cd

Bump version to: 0.1.0 [skip ci]

tthenriquedb committed 4 years ago

README

The README file for this repository.

Boilerplate to use with Storybook, Sass, TypeScript and JEST

What is insided?

How to use

yarn && yarn storybook
# or npm install && npm run storybook  

Scripts

  • test: run all jest tests
  • storybook: run storybook on 6006 port
  • lint: run the linter on all components
  • build-storybook: create the build version of storybook
  • deploy-storybook:ghpages: Deploy Sorybook on Github Pages

Absolute paths

TypeScript

// anyComponent.tsx
import { Component } from 'packages/Component';
import sass from 'sass/*';

SCSS

// component.module.scss
@import "sass/*";
@import "sass/config/colors";

Read more