Skip to content

Instantly share code, notes, and snippets.

@coryhouse
Last active December 20, 2015 02:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coryhouse/12bd08ca3a2ec60e6d34 to your computer and use it in GitHub Desktop.
Save coryhouse/12bd08ca3a2ec60e6d34 to your computer and use it in GitHub Desktop.
Example of hacky comment in package.json
{
"name": "npm-scripts-example",
"version": "1.0.0",
"description": "npm scripts example",
"scripts": {
"clean-comment": "Clean the dist folder before the build by removing it and recreating it.",
"clean": "rm -rf ./dist && mkdir dist"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment