├── .editorconfig ├── .eslintrc ├── .gitignore ├── .huskyrc ├── .prettierrc ├── LICENSE.md ├── README.md ├── package.json ├── src ├── index.js └── mix.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/palette-webpack-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/palette-webpack-plugin/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/palette-webpack-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.huskyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/palette-webpack-plugin/HEAD/.huskyrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/palette-webpack-plugin/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/palette-webpack-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/palette-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/palette-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/palette-webpack-plugin/HEAD/src/index.js -------------------------------------------------------------------------------- /src/mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/palette-webpack-plugin/HEAD/src/mix.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/palette-webpack-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------