Skip to content

Instantly share code, notes, and snippets.

@k1-c
Last active February 15, 2023 06:28
Show Gist options
  • Select an option

  • Save k1-c/736d969dc73b1197897e668863f86e9a to your computer and use it in GitHub Desktop.

Select an option

Save k1-c/736d969dc73b1197897e668863f86e9a to your computer and use it in GitHub Desktop.
[node] [npm] [yarn] pre / post hook example at npm script
{
"name": "sample",
"version": "0.1.0",
"private": true,
"scripts": {
"schema:update": "npx openapi2aspida -i=docs/openapi.yml",
"predev": "schema:update"
"dev": "next dev",
"prebuild": "schema:update",
"build": "next build",
},
}
@k1-c
Copy link
Author

k1-c commented Feb 15, 2023

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment