Skip to content

Instantly share code, notes, and snippets.

View lexblagus's full-sized avatar

Lex Blagus lexblagus

View GitHub Profile
@leonardokl
leonardokl / npm-version-cheatsheet.md
Last active March 19, 2024 08:09
npm version cheatsheet

NPM VERSION

Bump a package version

major (Breaking Change)

# version 1.0.0
$ npm version major # 2.0.0
$ npm version premajor # 2.0.0-0
@jamiewilson
jamiewilson / sass-random-color.scss
Created March 17, 2016 17:02
Sass Random Color Generator
/* Create random color for brands */
/* http://geoffgraham.me/randomize-sass */
$s-min: 20;
$s-max: 70;
$l-min: 30;
$l-max: 90;
@for $i from 1 through 100 {
.card:nth-child(#{$i}) .card-brand-color {