├── .gitignore ├── LICENSE ├── README.md ├── dist └── main.min.css ├── package.json ├── postcss.config.json └── src ├── _sample.css ├── _variables.css └── main.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefoxis/postcss-npm-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefoxis/postcss-npm-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /dist/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefoxis/postcss-npm-boilerplate/HEAD/dist/main.min.css -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefoxis/postcss-npm-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefoxis/postcss-npm-boilerplate/HEAD/postcss.config.json -------------------------------------------------------------------------------- /src/_sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefoxis/postcss-npm-boilerplate/HEAD/src/_sample.css -------------------------------------------------------------------------------- /src/_variables.css: -------------------------------------------------------------------------------- 1 | $blue: hsla(208, 100%, 85%, 1.0); 2 | -------------------------------------------------------------------------------- /src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefoxis/postcss-npm-boilerplate/HEAD/src/main.css --------------------------------------------------------------------------------