Created
August 1, 2018 14:06
-
-
Save johnfmorton/22e66f82ec789ade2b13b001a0201a66 to your computer and use it in GitHub Desktop.
A WIP laravel mix workflow
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let mix = require('laravel-mix'); | |
let precss = require("precss"); | |
let tailwindcss = require("tailwindcss"); | |
require('laravel-mix-purgecss'); | |
require('laravel-mix-criticalcss'); | |
class TailwindExtractor { | |
static extract(content) { | |
return content.match(/[A-z0-9-:\/]+/g) || []; | |
} | |
} | |
mix.options({ | |
processCssUrls: false | |
}); | |
/* | |
|-------------------------------------------------------------------------- | |
| Mix Asset Management | |
|-------------------------------------------------------------------------- | |
| | |
| Mix provides a clean, fluent API for defining some Webpack build steps | |
| for your Laravel application. By default, we are compiling the Sass | |
| file for your application, as well as bundling up your JS files. | |
| | |
*/ | |
mix.copy('node_modules/video.js/dist/video-js.min.css', "web/static/css/video-js.css") | |
mix.postCss("./src/style.pcss", "web/static/css", [ | |
precss(), | |
tailwindcss("./tailwind.js") | |
]) | |
.purgeCss({ | |
enabled: mix.inProduction(), | |
// Your custom globs are merged with the default globs. If you need to fully replace | |
// the globs, use the underlying `paths` option instead. | |
globs: [ | |
path.join(__dirname, 'templates/**/*.twig'), | |
], | |
extensions: ['html', 'twig', 'js', 'php', 'vue'], | |
// Other options are passed through to Purgecss | |
// whitelistPatterns: [/language/, /hljs/], | |
}) | |
mix.js('node_modules/vanilla-lazyload/dist/lazyload.es2015.js', 'web/static/js/lazyload.js') | |
mix.js('src/app.js', 'web/static/js') | |
mix.js('node_modules/video.js/dist/video.min.js', 'web/static/js/video.js') | |
// Full API | |
// mix.js(src, output); | |
// mix.react(src, output); <-- Identical to mix.js(), but registers React Babel compilation. | |
// mix.preact(src, output); <-- Identical to mix.js(), but registers Preact compilation. | |
// mix.coffee(src, output); <-- Identical to mix.js(), but registers CoffeeScript compilation. | |
// mix.ts(src, output); <-- TypeScript support. Requires tsconfig.json to exist in the same folder as webpack.mix.js | |
// mix.extract(vendorLibs); | |
// mix.sass(src, output); | |
// mix.standaloneSass('src', output); <-- Faster, but isolated from Webpack. | |
// mix.fastSass('src', output); <-- Alias for mix.standaloneSass(). | |
// mix.less(src, output); | |
// mix.stylus(src, output); | |
// mix.postCss(src, output, [require('postcss-some-plugin')()]); | |
// mix.browserSync('my-site.test'); | |
// mix.combine(files, destination); | |
// mix.babel(files, destination); <-- Identical to mix.combine(), but also includes Babel compilation. | |
// mix.copy(from, to); | |
// mix.copyDirectory(fromDir, toDir); | |
// mix.minify(file); | |
// mix.sourceMaps(); // Enable sourcemaps | |
// mix.version(); // Enable versioning. | |
// mix.disableNotifications(); | |
// mix.setPublicPath('path/to/public'); | |
// mix.setResourceRoot('prefix/for/resource/locators'); | |
// mix.autoload({}); <-- Will be passed to Webpack's ProvidePlugin. | |
// mix.webpackConfig({}); <-- Override webpack.config.js, without editing the file directly. | |
// mix.babelConfig({}); <-- Merge extra Babel configuration (plugins, etc.) with Mix's default. | |
// mix.then(function () {}) <-- Will be triggered each time Webpack finishes building. | |
// mix.extend(name, handler) <-- Extend Mix's API with your own components. | |
// mix.options({ | |
// extractVueStyles: false, // Extract .vue component styling to file, rather than inline. | |
// globalVueStyles: file, // Variables file to be imported in every component. | |
// processCssUrls: true, // Process/optimize relative stylesheet url()'s. Set to false, if you don't want them touched. | |
// purifyCss: false, // Remove unused CSS selectors. | |
// uglify: {}, // Uglify-specific options. https://webpack.github.io/docs/list-of-plugins.html#uglifyjsplugin | |
// postCss: [] // Post-CSS options: https://github.com/postcss/postcss/blob/master/docs/plugins.md | |
// }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment