diff options
-rw-r--r-- | package.json | 5 | ||||
-rw-r--r-- | src/index.scss | 9 |
2 files changed, 13 insertions, 1 deletions
diff --git a/package.json b/package.json index 3bdc8b0..9aad121 100644 --- a/package.json +++ b/package.json | |||
@@ -1,9 +1,12 @@ | |||
1 | { | 1 | { |
2 | "name": "iro-sass", | 2 | "name": "iro-sass", |
3 | "version": "1.0.1", | 3 | "version": "1.0.2", |
4 | "author": "Volpeon <me@volpeon.ink>", | 4 | "author": "Volpeon <me@volpeon.ink>", |
5 | "license": "MIT", | 5 | "license": "MIT", |
6 | "description": "A mixin-based Sass framework that makes it easier to work with BEM, organize variables and more.", | 6 | "description": "A mixin-based Sass framework that makes it easier to work with BEM, organize variables and more.", |
7 | "main": "src/index.scss", | ||
8 | "style": "src/index.scss", | ||
9 | "sass": "src/index.scss", | ||
7 | "keywords": [ | 10 | "keywords": [ |
8 | "sass", | 11 | "sass", |
9 | "scss", | 12 | "scss", |
diff --git a/src/index.scss b/src/index.scss new file mode 100644 index 0000000..ebdc4d6 --- /dev/null +++ b/src/index.scss | |||
@@ -0,0 +1,9 @@ | |||
1 | @forward 'bem' as bem-; | ||
2 | @forward 'contexts' as ctx-; | ||
3 | @forward 'easing' as easing-*; | ||
4 | @forward 'functions' as fn-*; | ||
5 | @forward 'gradients' as gradients-*; | ||
6 | @forward 'harmony' as harmony-*; | ||
7 | @forward 'props' as props-*; | ||
8 | @forward 'responsive' as responsive-*; | ||
9 | @forward 'vars' as vars-*; | ||