├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── assets └── octophant.jpg ├── index.js ├── lib ├── buildContents.js ├── buildImports.js ├── buildSection.js ├── buildVariable.js └── processSassDoc.js ├── package.json └── test ├── fixtures ├── _file1.scss ├── _file2.scss └── _file3.scss └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/octophant/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .* 2 | node_modules 3 | test 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/octophant/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/octophant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/octophant/HEAD/README.md -------------------------------------------------------------------------------- /assets/octophant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/octophant/HEAD/assets/octophant.jpg -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/octophant/HEAD/index.js -------------------------------------------------------------------------------- /lib/buildContents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/octophant/HEAD/lib/buildContents.js -------------------------------------------------------------------------------- /lib/buildImports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/octophant/HEAD/lib/buildImports.js -------------------------------------------------------------------------------- /lib/buildSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/octophant/HEAD/lib/buildSection.js -------------------------------------------------------------------------------- /lib/buildVariable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/octophant/HEAD/lib/buildVariable.js -------------------------------------------------------------------------------- /lib/processSassDoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/octophant/HEAD/lib/processSassDoc.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/octophant/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/_file1.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/octophant/HEAD/test/fixtures/_file1.scss -------------------------------------------------------------------------------- /test/fixtures/_file2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/octophant/HEAD/test/fixtures/_file2.scss -------------------------------------------------------------------------------- /test/fixtures/_file3.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/octophant/HEAD/test/fixtures/_file3.scss -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foundation/octophant/HEAD/test/test.js --------------------------------------------------------------------------------