Closed iby-dev closed 6 years ago
Hi,
I am new to this so forgive me.
I am using npm as my pm. I tried using yarn and some packages were not downloading successfully so i switched back to npm.
What is the NPM equivalent to the below ... please.
"scripts": { "start": "yarn dev:start", "dev:start": "nodemon --ignore lib --exec babel-node src/server", "test": "eslint src && flow && jest --coverage" },
Got it working with:
"scripts": { "start": "npm run-script dev:start", "dev:start": "nodemon --ignore lib --exec babel-node src/server", "test": "eslint src && flow && jest --coverage" },
Hi,
I am new to this so forgive me.
I am using npm as my pm. I tried using yarn and some packages were not downloading successfully so i switched back to npm.
What is the NPM equivalent to the below ... please.