Package Exports
- npm-delay
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (npm-delay) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
npm-delay
delay before run next command
Install
$ npm install --save npm-delay
or
$ yarn add --dev npm-delay
Usage
package.json
"scripts": {
"dev:server:delay": "run-s delay dev:server:start",
"delay": "node ./node_modules/npm-delay 1000",
"dev:server:start": "node ./src/server.js",
},