无忧无虑的js文件合并

时间:2013-11-26 13:35:25

标签: javascript phpstorm

我喜欢https://github.com/cjohansen/juicer/tree/master用于合并js文件的方法。但它似乎是一种观察机制。是否有其他类似的具有手表能力的工具?

如何使用PHPStorm功能观看js文件并合并所有js文件?

//main.js
/*
@depend x.js
*/

//x.js
var x=3;

问题是PHPstorms的观察者在x.js上运行并生成x.min.js,而我需要main.min.js

1 个答案:

答案 0 :(得分:1)

您仍然可以使用榨汁机,但在PHPStorm中将其设置为文件观察程序,以便每次编辑js文件时它都会运行。有关详细信息,请参阅http://www.jetbrains.com/webstorm/webhelp/file-watchers.html

Smth喜欢:

File Type: javascript files
Program: C:\Ruby193\bin\juicer.bat
Arguments: merge $FileName$ -o $FileNameWithoutExtension$.min.js
Working Directory: $FileDir$
Output Paths: $FileNameWithoutExtension$.min.js