diff --git a/.npmignore b/.npmignore index a8f7d8b..e3ccf15 100644 --- a/.npmignore +++ b/.npmignore @@ -1,5 +1,5 @@ .github .vscode .editorconfig -.prettier +.prettierrc *.css diff --git a/README.md b/README.md index 783682c..bb9af8a 100644 --- a/README.md +++ b/README.md @@ -191,7 +191,7 @@ body { ``` ```scss -+$bowhead-variable-as-default: false; +$bowhead-variable-as-default: false; body { color: v(color, brick); @@ -207,8 +207,8 @@ body {

№ 2. Show Fallback Value

```scss -+$bowhead-variable-as-default: true; -+$bowhead-show-fallback: true; +$bowhead-variable-as-default: true; +$bowhead-show-fallback: true; body { @include v(color, desert); @@ -223,8 +223,8 @@ body { ``` ```scss -+$bowhead-variable-as-default: true; -+$bowhead-show-fallback: false; +$bowhead-variable-as-default: true; +$bowhead-show-fallback: false; body { @include v(color, desert); @@ -240,8 +240,8 @@ body { When $bowhead-variable-as-default is false, $bowhead-show-fallback has no effect. ```scss -+$bowhead-variable-as-default: false; -+$bowhead-show-fallback: true; +$bowhead-variable-as-default: false; +$bowhead-show-fallback: true; body { @include v(color, desert); @@ -255,8 +255,8 @@ body { ``` ```scss -+$bowhead-variable-as-default: false; -+$bowhead-show-fallback: false; +$bowhead-variable-as-default: false; +$bowhead-show-fallback: false; body { @include v(color, desert); diff --git a/package.json b/package.json index 5baf81a..6d916f4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@chrisburnell/bowhead", - "version": "0.3.3", + "version": "0.3.4", "description": "Memorable and maintainable design tokens in SCSS", "author": "Chris Burnell ", "license": "MIT",