aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2022-02-05 08:23:59 +0100
committerVolpeon <git@volpeon.ink>2022-02-05 08:23:59 +0100
commite1b2b2113eb0ed8b010d397e20072484019fca7b (patch)
treef80d0adee60c2a5c9c04074ef8ab1a1495dbe661
parentPorted from import syntax to modules (diff)
downloadiro-sass-e1b2b2113eb0ed8b010d397e20072484019fca7b.tar.gz
iro-sass-e1b2b2113eb0ed8b010d397e20072484019fca7b.tar.bz2
iro-sass-e1b2b2113eb0ed8b010d397e20072484019fca7b.zip
Added main entry file
-rw-r--r--package.json5
-rw-r--r--src/index.scss9
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-*;