We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Open your package.json and add a postinstall hook to the scriptssection:
postinstall
scripts
{ "name": "my-platform-app", "scripts": { "start": "node index.js", "postinstall": "grunt my-grunt-task" }, "dependencies": { "express": "^4.0.0" } }
A full list of supported hooks can be found here.