Tim S.
Tim S.

Reputation: 13843

PHPStorm 7 File Watcher ignores configuration

I'm trying to set up a Compass project. Everything seem to work when I compile manually. However, when I'm using a File Watcher it saves it in the same directory as the SCSS file.

I just want the File Watcher to use my configuration file. Preferably on every project in the future.

Right: Structure when compiled manually

Manual

Wrong: Structure when compiled with the File Watcher

File Watcher


config.rb

css_dir = "css"
sass_dir = "css/sass"
output_style = :compressed

File Watcher

File Watcher


How can I make the File Watcher to respect the configuration?

Upvotes: 0

Views: 1551

Answers (1)

Tim S.
Tim S.

Reputation: 13843

Solved!

  • Deleted the SCSS File Watcher
  • Manually added a Compass File Watcher
  • Set arguments to: compile $ProjectFileDir$

Settings

Upvotes: 2

Related Questions