我尝试使用UglifyJS2对一个简单的 javascript 文件进行 uglify 。
以下是文件的内容:
//this is simply a sample var
var sampleVar = "xyz";
//lots of comments
//this is just another comment
//such things should not be present in javascript
//waiting to see result after uglifying
//this is simply a sample function
function sampleFunction()
{
var sampleLocalVar = "xzx";
if(true)
{
//inserting some sample comments
alert("in if block");
}
else
{
//inserting some sample comments
alert("in else block");
}
}
这是我用来丑化的命令:
uglifyjs -c -m sample.js sample.min.js
我收到的错误:
Dot
Error parsing arguments in : sample.js