This package facilitates the installation of Webpack 5 for Drupal 8+.
Webpack is preconfigured to handle JS & SASS found in custom Themes & Modules.
The configuration will also handle Single Directory Components found within themes.
This is a Node package and is best installed using NPM or
Yarn. You can use npm init
to generate a
package.json
file at the root of your project.
npm install -D drupal-webpack
yarn add -D drupal-webpack
Perform initial setup using the provided CLI.
npm exec druwp install
yarn druwp install
After this is done, refer to the .webpack/config.yml
file that has been created and adjust it to your liking.
Below are examples of using webpack after it has been configured:
npm exec webpack
npm exec webpack -- --env theme=my_custom_theme
npm exec webpack -- --env themes
npm exec webpack -- --env module=my_custom_module
npm exec webpack -- --env modules
By default, if the config.yml
file is left untouched, Webpack will:
- Look for
.js
files atMY_MODULE/js
orMY_THEME/js
.- If found, JS will be compiled and minified into respective
.min.js
files. - e.g.
MY_MODULE/js/MY_MODULE.js
will be compiled intoMY_MODULE/js/MY_MODULE.min.js
.
- If found, JS will be compiled and minified into respective
- Look for
.scss
files atMY_MODULE/scss
orMY_THEME/scss
.- If found, SCSS will be compiled and minified into respective
.css
files in a new/css
folder. - e.g.
MY_MODULE/scss/MY_MODULE.scss
will be compiled intoMY_MODULE/css/MY_MODULE.css
.
- If found, SCSS will be compiled and minified into respective
- In themes, any
.js
or.scss
found within a configuredcomponents
folder for SDC will be compiled as well.
By default, files whose names start with an underscore (_
) will not be compiled and are intended for imports.
e.g. _variables.scss
. This can be changed in the config.yml
.