Open Al3xCubed opened 5 years ago
Discussion of this particular topic has occurred in both #29 and #84 however, no direct changes have been mentioned in response to those requests as of yet as far as I can tell.
It is one of the features that I most want myself. Unfortunately, it also appears that the developer of this extension is no longer able to maintain it and is looking for a replacement.
Create a .vscode folder in the root of project. Inside of .vscode folder create a json file named settings.json. Inside of the settings.json, type following key-value pairs. By the way you’ll get intelli-sense.
{ "liveSassCompile.settings.formats":[ { "format": "expanded", "extensionName": ".css", "savePath": "/css" }, { "extensionName": ".min.css", "format": "compressed", "savePath": "/dist/css" } ], "liveSassCompile.settings.excludeList": [ "/node_modules/", ".vscode/**" ], "liveSassCompile.settings.generateMap": true, "liveSassCompile.settings.autoprefix": [ "> 1%", "last 2 versions" ] }
Same problem here. I want the folder structure:
parent
|
|__ sass
| |__ file1.scss
| |__ layout
| |__ file2.scss
|__ css
|__ file1.css
|__ layout
|__ file2.css
But "savePath" doesn't allow this configuration
this fork https://github.com/glenn2223/vscode-live-sass-compiler is able to keep the folder structure
I'd like to be able to let the output css files to be in the
dist
folder while keeping the same folder structure. Examples:src/foo/thing.scss
-->dist/foo/thing.css
src/foo/bar/thing.scss
-->dist/foo/bar/thing.scss