Search code examples
javascriptcsslaravelnpmnpm-run

how to know which file compile when I run npm run dev


when running npm running its compile CSS and js right? where can I find that file and can I edit it, I want to change the background of my vue2-timepicker, its currently in #dde1e3, I want to change it to #fff / white, and also when I'm using vue2-timepicker, it automatically became read-only, anyway thank you so much, everyone, hope someone can help me thank you so much in advance


Solution

  • when running npm running its compile css and js right?

    npm run dev means Run the command listed under dev in the scripts section of package.json.

    That could do pretty much anything (and compiling CSS and JS is one thing it could do).

    So to determine what it is doing, look at package.json to see the command and trace through.