quasar dev === npm run dev ???
-
Just curious are “quasar dev” and “npm run dev” essentially the same?
Basically, I want to create another script derived from build/script.dev.js. called “devbuild”: “node build/script.devbuild.js”.
So would there be any issues with me running it this way “npm run devbuild”?
-
Under the hood, “quasar dev” ends up calling “npm run dev”. It’s safe if you want to simply run “npm run dev” or “npm run build”.
Quasar CLI on the other hand does some extra work, checking if dev port is available (just to name one of those extra things).