简体   繁体   English

当我运行 npm run dev 时如何知道编译哪个文件

[英]how to know which file compile when I run npm run dev

when running npm running its compile CSS and js right?运行 npm 时运行其编译 CSS 和 js 对吗? 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我在哪里可以找到该文件并且可以编辑它,我想更改我的 vue2-timepicker 的背景,它当前在#dde1e3中,我想将其更改为#fff / 白色,以及当我使用 vue2- timepicker,它自动变成只读的,无论如何非常感谢大家,希望有人能帮助我提前非常感谢

when running npm running its compile css and js right?运行 npm 时运行其编译 css 和 js 对吗?

npm run dev means Run the command listed under dev in the scripts section of package.json . npm run dev表示运行 package.json 的scripts部分dev下列出的命令

That could do pretty much anything (and compiling CSS and JS is one thing it could do).这几乎可以做任何事情(编译 CSS 和 JS 是它可以做的一件事)。

So to determine what it is doing, look at package.json to see the command and trace through.因此,要确定它在做什么,请查看 package.json 以查看命令并进行跟踪。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM