Skip to content

Instantly share code, notes, and snippets.

@coryhouse
Last active November 9, 2023 06:04
Show Gist options
  • Save coryhouse/b7ff5e6d1e41b762c35b to your computer and use it in GitHub Desktop.
Save coryhouse/b7ff5e6d1e41b762c35b 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