I have the following build system setup for javascript files:
{
"selector": "source.js",
"cmd": [
"/usr/bin/uglifyjs",
"$file",
"--compress --mangle --output",
"$file_path/$file_base_name.min.js"
]
}
The correct output from uglifyjs is showing up in the result pane in Sublime Text 3, but it’s not being output to the destination file.
I’m sure I’m missing something obvious, but any help would be appreciated
Bill