Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

laravel-bundler

Package Overview
Dependencies
Maintainers
1
Versions
108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

laravel-bundler

Modern asset building tool for Laravel framework with better defaults.

  • 0.11.0
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Laravel Bundler

downloads npm-version github-tag license build-status

Modern asset building tool for Laravel framework with better defaults.

Installation

:warning: This package does not work with laravel-mix; you should remove laravel-mix before using this one

# npm
npm install laravel-bundler 

# yarn
yarn add laravel-bundler

Usage

Create a webpack.config.js file on your project root and remove webpack.mix.js if exists.

module.exports = require('laravel-bundler')({
  entry: {
    app: './resources/js/app.js',
  },
  // Other webpack configs
});

Update your package.json

"scripts": {
    "dev": "cross-env NODE_ENV=development webpack --progress --mode development",
    "watch": "npm run dev -- --watch",
    "prod": "cross-env NODE_ENV=production webpack --progress --mode production",
    "hot": "cross-env NODE_ENV=development webpack-dev-server --progress --hot"
},
"browserslist": [
    "> 1%",
    "not IE 11"
]  

Update your blade template

<!-- header -->
<link href="{{ mix('css/app.css') }}" rel="stylesheet">

<!-- footer -->
<script src="{{ mix('js/manifest.js') }}"></script>
<script src="{{ mix('js/vendor.js') }}"></script>
<script src="{{ mix('js/app.js') }}"></script>

Update your .gitignore

/public/hot
/public/js
/public/css
/public/fonts
/public/images
/public/mix-manifest.json

Baked Features

  • Webpack 4, Babel 7 with @babel/preset-env
  • Vue.js support - Recipe
  • CSS|SASS|SCSS with CSS modules support
  • PostCSS loader with autoprefixer and cssnano
  • Font and image files handling
  • HMR support, even for CSS :fire:
  • Extract all css to a separate file based on entry name
  • Extract all vendor js to a separate file
  • Clean output directories before build
  • mix-manifest.json compatible with Laravel's mix() helper
  • Load environment variables from .env file that are prefixed with MIX_
  • Intelligent SourceMap

Documentation

Not in the plan

These features are not in the plan but can be enabled on demand

License

MIT License

Keywords

FAQs

Package last updated on 01 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc