Skip to content

Instantly share code, notes, and snippets.

@jnario
Created December 24, 2017 02:00
Show Gist options
  • Save jnario/f3257e7c136d37a4a872db9a4b9bde2d to your computer and use it in GitHub Desktop.
Save jnario/f3257e7c136d37a4a872db9a4b9bde2d to your computer and use it in GitHub Desktop.
File Watcher for SASS/SCSS (PyCharm)
<TaskOptions>
<TaskOptions>
<option name="arguments" value="--no-cache --update $FileName$:$ProjectFileDir$/src/static/css/$FileNameWithoutExtension$.css" />
<option name="checkSyntaxErrors" value="true" />
<option name="description" />
<option name="exitCodeBehavior" value="ERROR" />
<option name="fileExtension" value="scss" />
<option name="immediateSync" value="true" />
<option name="name" value="SCSS" />
<option name="output" value="$FileNameWithoutExtension$.css:$FileNameWithoutExtension$.css.map" />
<option name="outputFilters">
<array />
</option>
<option name="outputFromStdout" value="false" />
<option name="program" value="/usr/local/bin/scss" />
<option name="runOnExternalChanges" value="true" />
<option name="scopeName" value="scss_files" />
<option name="trackOnlyRoot" value="true" />
<option name="workingDir" value="$FileDir$" />
<envs />
</TaskOptions>
</TaskOptions>
@jnario
Copy link
Author

jnario commented Dec 24, 2017

  • Output routing notes here.
  • General config notes here

@jnario
Copy link
Author

jnario commented Feb 2, 2018

arguments
--no-cache --update --style nested $FileName$:$ProjectFileDir$/src/static/css/$FileNameWithoutExtension$.css

output
$FileNameWithoutExtension$.css:$FileNameWithoutExtension$.css.map

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment