Skip to content

Instantly share code, notes, and snippets.

View shilman's full-sized avatar
🇹🇼

Michael Shilman shilman

🇹🇼
View GitHub Profile
@shilman
shilman / RELEASE_v6.md
Last active December 28, 2019 17:16
Storybook release proposal v6

Storybook Release Proposal v6

Sixth iteration of the Storybook release process (v1, v2, v3, v4, v5), updated to reflect learnings from the 5.0 release.

What we're doing now

  • We respect semver for all releases to the best of our ability
  • master is released on the latest tag every week (e.g. 4.0.2)
  • next is released on the next tag every week (e.g. 4.1.0-alpha.X)
@shilman
shilman / sb-monthly-2019-12-09.md
Last active December 9, 2019 15:49
Storybook Monthly 2019-12-09

Storybook Monthly 2019-12-09

Introduction - 5m

  • Welcome
  • Self-introductions

Nov 16 beta, Dec 16 rc, Jan 7 final (3 mo cycle)

@shilman
shilman / simple.mdx
Created December 2, 2019 15:52
Simple MDX example

import { Meta, Story, Preview } from '@storybook/addon-docs/blocks';

import { Badge } from './Badge'; import { Icon } from './Icon';

Badge

Let's define a story for our Badge component:

@shilman
shilman / RELEASE_v7.md
Last active November 20, 2019 04:01
storybook release process v7

Storybook Release Process v7

Seventh iteration of the Storybook release process (v1, v2, v3, v4, v5, v6), updated to reflect learnings from the 5.0 release.

What we're doing now

  • We respect semver for all releases to the best of our ability
  • master is released on the latest tag every week (e.g. 4.0.2)
  • next is released on the next tag every week (e.g. 4.1.0-alpha.X)
@shilman
shilman / storybook-monthly-2019-11-04.md
Last active November 4, 2019 20:50
Storybook Monthly 2019-11-04

Storybook Monthly 2019-11-04

Introduction - 5m

  • Welcome
  • Self-introductions

Nov 11 beta, Dec 9 rc, Jan 7 final (3 mo cycle)

@shilman
shilman / storybook-docs-typescript-walkthrough.md
Last active November 1, 2019 02:48
Storybook Monthly 2019-10-07

Storybook Docs w/ Typescript

This is a quick-and-dirty walkthrough to set up a fresh project with Storybook Docs and Typescript. It's not

@shilman
shilman / storybook-monthly-2019-09-02.md
Last active August 31, 2019 12:15
Storybook monthly meeting 2019-09-02

Storybook Monthly 2019-09-02

Introduction - 5m

  • Welcome
  • Self-introductions

5.2 Release - 5m

  • 7/15 beta 🎉, 8/30 rc, 9/10 release (2.5 mo cycle)
@shilman
shilman / Storybook-monthly-2019-08-13.md
Last active August 31, 2019 04:25
Storybook monthly meeting 2019-08-13

Storybook Monthly 2019-08-13

Introduction - 5m

  • Welcome
  • Self-introductions

5.2 - 10m

  • 7/15 beta 🎉, 8/19 rc, 8/26 release (2.5 mo cycle)
# Storybook Monthly 2019-09-02
## Introduction - 5m
- Welcome
- Self-introductions
## 5.2 Release - 10m
- 7/15 beta 🎉, 8/30 rc, 9/10 release (2.5 mo cycle)
@shilman
shilman / Badge.stories.jsx
Last active August 21, 2019 15:48
MDX Sample
import { Meta, Story, Props } from '@storybook/addon-docs/blocks';
import { Badge } from './Badge';
<Meta title="Demo/Badge" component={Badge} />
# Badge
With `MDX` we write longform markdown documentation for our `Badge` component and embed Doc Blocks inline.
<Props of={Badge} />