Skip to content

Instantly share code, notes, and snippets.

@RaphaelBlehoue
Forked from coryhouse/package.json
Created March 4, 2021 23:48
Show Gist options
  • Save RaphaelBlehoue/644075a522447e41fee8dbfa44c9838a to your computer and use it in GitHub Desktop.
Save RaphaelBlehoue/644075a522447e41fee8dbfa44c9838a to your computer and use it in GitHub Desktop.
Example of pre and post scripts in package.json
{
"name": "npm-scripts-example",
"version": "1.0.0",
"description": "npm scripts example",
"scripts": {
"prebuild": "echo I run before the build script",
"build": "cross-env NODE_ENV=production webpack",
"postbuild": "echo I run after the build script"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment