JSPM

laravel-mix-banner

0.1.4
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 44
  • Score
    100M100P100Q64565F
  • License MIT

A Laravel Mix extension for Webpack Banner support.

Package Exports

  • laravel-mix-banner

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (laravel-mix-banner) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

NPM NPM NPM

Laravel Mix Banner

This extension provides instant Webpack Banner support to your Mix (v2.1 and up) builds.

Usage

First, install the extension.

npm install laravel-mix-banner --save-dev

Then, require it within your webpack.mix.js file, like so:

let mix = require('laravel-mix');

require('laravel-mix-banner');

mix
    .js('resources/assets/js/app.js', 'public/js')
    .less('resources/assets/less/app.less', 'public/css')
    .banner({
        banner: (function () {
            return [
                '/**',
                ' * @project        Laravel Mix Banner',
                ' * @author         Rias',
                ' * @build          2018-03-17 17:00 GMT+1',
                ' * @release        0.1.1',
                ' *',
                ' */',
                '',
            ].join('\n');
        })(),
        raw: true,
    });

And you're done! Compile everything down with npm run dev.