HookyQR / VSCodeMinify

Add minify function to VSCode 0.10+
53 stars 20 forks source link

Added settings to change output locations #56

Open mhco opened 3 years ago

mhco commented 3 years ago

Summary

Added "minify.jsSavePath", "minify.cssSavePath", and "minify.htmlSavePath" settings that enable the user to define where they want files saved. These settings take strings, and can be relative or direct.

This change needs to be thoroughly tested by others before it's fully ready to release.

Examples

Relative:

"minify.jsSavePath": "../../public/js",

Root level:

"minify.cssSavePath": "/assets/css/",

Literal:

"minify.htmlSavePath": "compiled/css/",