用Uglify和PhpStorm缩小javascript不起作用

时间:2017-09-17 19:29:54

标签: javascript uglifyjs phpstorm-2017.2

我使用最新的PhpStorm 2017.2.3和最新的uglify.js。 在我的Toolsettings id中执行以下操作:

enter image description here

比我在模块目录中添加一个testfile(test.js) 在里面拿一些代码:

function test () {
var messsage = 'hello world';
alert(messsage);
}

uglify结果如下:

function test(){var messsage="hello world";alert(messsage)}

该工具不会缩小代码,只会将其整合到一行! 我必须在我的设置中更改以缩小js-code?

1 个答案:

答案 0 :(得分:1)

在“参数:”from docs

的末尾添加
-c -m

你会得到:

$FileName$ -o $FileNameWithoutExtension$.min.js -c -m

您的代码:

function test () {
  var messsage = 'hello world';
  alert(messsage);
}

将转换为:

function test(){alert("hello world")}