1

My folder structure is as follows

enter image description here

I am using 'live sass compiler' in vscode to watch files. But every time I update other scss files like _globals.scss I have to manually save style.scss for the changes to reflect. Is there a work-around to auto save style.scss instead of having to save it manually.

my settings.json for live sass compiler are as follows:

{
  "editor.tabSize": 2,
  "editor.fontSize": 18,
  "editor.wordWrap": "on",
  "editor.formatOnSave": true,
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "terminal.integrated.defaultProfile.windows": "Git Bash",
  "liveServer.settings.donotShowInfoMsg": true,
  "files.autoSave": "afterDelay",
  "workbench.editorAssociations": {
    "*.ipynb": "jupyter.notebook.ipynb"
  },
  "editor.renderWhitespace": "none",
  "liveSassCompile.settings.autoprefix": [],

  "liveSassCompile.settings.excludeList": ["**/node_modules/**", ".vscode/**"]
}

Palx
  • 57
  • 5

1 Answers1

0

This seems bizare. Anything with a leading underscore should compile all files. Do you still have the issue on my active fork?

glenn223
  • 238
  • 1
  • 4
  • 16