├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── README.md ├── package.json ├── src ├── get-variables.js ├── index.js └── parse-variables.js └── test └── index.test.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/sass-variable-loader/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | dist 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/sass-variable-loader/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/sass-variable-loader/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/sass-variable-loader/HEAD/package.json -------------------------------------------------------------------------------- /src/get-variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/sass-variable-loader/HEAD/src/get-variables.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/sass-variable-loader/HEAD/src/index.js -------------------------------------------------------------------------------- /src/parse-variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/sass-variable-loader/HEAD/src/parse-variables.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordnet/sass-variable-loader/HEAD/test/index.test.js --------------------------------------------------------------------------------