Hello,
With this config file called .uglify.json :
{
"pattern": "**/*[.js,.ts]",
"options": {
"UseMinExt": false,
"MinifyOptions": {},
"OutDir": "dist",
"RootDir": "src",
"RemoveSource": false,
"Debug": false
}
}
When I launch this command :
glob-uglifyjs -c .uglify.json
In my dist directory, i found all my .js and .ts files minified in the folder dist and his subfolders.
I want only 1 output file.
With uglify, I just need to use the -o command line options but this option doesn't work with glob-unify and I can't find an other way with uglify options to do this.
Any one has a solution ?
Thank you
Hello,
With this config file called .uglify.json :
When I launch this command :
In my dist directory, i found all my .js and .ts files minified in the folder dist and his subfolders.
I want only 1 output file.
With uglify, I just need to use the -o command line options but this option doesn't work with glob-unify and I can't find an other way with uglify options to do this.
Any one has a solution ?
Thank you