【发布时间】:2013-12-18 08:59:45
【问题描述】:
我尝试使用 UglifyJS2 丑化一个简单的 javascript 文件。
这是文件的内容:
//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
【问题讨论】:
标签: javascript uglifyjs2