├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── _config.yml ├── banner.png ├── bin └── mix.js ├── lib ├── config.js └── utils.js ├── package.json ├── renovate.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | banner.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandogh/laravel-multimix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandogh/laravel-multimix/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandogh/laravel-multimix/HEAD/_config.yml -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandogh/laravel-multimix/HEAD/banner.png -------------------------------------------------------------------------------- /bin/mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandogh/laravel-multimix/HEAD/bin/mix.js -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandogh/laravel-multimix/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandogh/laravel-multimix/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandogh/laravel-multimix/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandogh/laravel-multimix/HEAD/renovate.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fandogh/laravel-multimix/HEAD/yarn.lock --------------------------------------------------------------------------------