Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用grunt-ngmin转换 AngularJS DI。
我想知道:是否可以用新文件替换旧文件而不将它们保存到另一个位置?
是的,有可能,您可以使用类似这样的 grunt 配置(如果您想替换静态文件夹中的所有 javascript 文件):
ngmin: { dist: { expand: true, cwd: './static/', src: ['**/*.js'], dest: './static/' } }
请注意,您确实想要替换文件,如果您还没有这样做,可能需要先检查输出。