Skip to content

Instantly share code, notes, and snippets.

@beijaflor
Created May 5, 2016 13:22
Show Gist options
  • Save beijaflor/292a83199857642395f3fdc515be2374 to your computer and use it in GitHub Desktop.
Save beijaflor/292a83199857642395f3fdc515be2374 to your computer and use it in GitHub Desktop.

It's about how to apply Semantic Versioning to Sass

Original Post

How to version your UI library — Design @ Optimizely — Medium

Versioning

Major

  • クラス名、ミックスイン、ファンクション、プレースホルダー、グローバル変数の名前変更と削除
  • コンポーネントの見た目の大幅な変更
  • Renamed or removed classes, mixins, functions, placeholders, or global variables
  • Major visual changes to existing components

Minor

  • コンポーネントの追加
  • クラス、グローバル変更、ミックスイン、ファンクションの追加または非推奨化
  • コンポーネントの見た目の小さな変更
  • Addition of a new component
  • New classes, global variables, mixins, functions, or deprecated code
  • Minor visual changes to existing components

Patch

  • 後方互換性のあるバグ修正
  • UIの一貫性を保つための見た目の微細な修正
  • Backwards compatible Sass bug fixes
  • Tiny visual changes to make the UI more consistent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment