NPM Scripts Integration
NPM allows us to define custom scripts in the package.json
file. These can then execute tasks using the NPM CLI.
We rely on these scripts to manage most of our project tasks and webpack fits in as well.
The scripts are defined in the scripts
property of the package.json
file. For example:
NPM allows pre and post task binding by prepending the word pre
or post
respectively to the task name. Here, our prebuild
task is executed before our build
task.
We can run an NPM script from inside another NPM script.
To invoke the build
script we run the command npm run build
:
The
prebuild
task executes.The
prebuild
task runs theclean
task, which executes therimraf dist
command.rimraf
(an NPM package) recursively deletes everything inside a specified folder.The
build
task is executed. This sets theNODE_ENV
environment variable toproduction
and starts the webpack bundling process.Webpack generates bundles based on the
webpack.config.js
available in the project root folder.
Last updated