

Otherwise, type the path manually or click and choose the file location in the dialog that opens. If you followed the standard installation procedure with npm, WebStorm locates the required files itself and fills in the field automatically.
Phpstorm filewatcher stylus archive#
In the Program field, specify the path to the compiler archive depending on the chosen predefined template. Depending on the tool you are going to use, choose the Less, Sass, or SCSS predefined template from the list. The File Watchers page that opens shows the list of already configured File Watchers.Ĭlick or press Alt+Insert. In the Settings/Preferences dialog ( Ctrl+Alt+S), click File Watchers under Tools.

However, in the Project Tree, they are shown under the source file which is now displayed as a node. The location of the generated files is defined in the Output paths to refresh field of the New Watcher dialog. The file has the name of the source Sass, Less, or SCSS file and the extension. WebStorm creates a separate file with the generated output. If the Auto-save edited files to trigger the watcher checkbox is cleared, the File Watcher is started upon save ( File | Save All, Ctrl+S) or when you move focus from WebStorm (upon frame deactivation). If the Auto-save edited files to trigger the watcher checkbox is selected, the File Watcher is invoked as soon as any changes are made to the source code. If an applicable File Watcher is configured and enabled in the current project, WebStorm starts the compiler automatically upon the event specified in the New Watcher dialog. If such File Watcher is configured but disabled, WebStorm displays a popup that informs you about the configured File Watcher and suggests to enable it. When you open a file, WebStorm checks whether an applicable File Watcher is available in the current project.
Phpstorm filewatcher stylus code#
To compile your code automatically, you need to configure a Sass, Less, or SCSS File Watcher which will track changes to your files and run the compiler. Learn more from the Less official website. Learn more from the Sass official website. In the embedded Terminal ( Alt+F12), type: Make sure the File Watchers and Less or Sass required plugins are enabled on the Settings/Preferences | Plugins page, tab Installed, see Managing plugins for details. Make sure you have Node.js on your computer. You can also use the compiler from the command line or configure it as a third-party tool, see Configuring Third-Party Tools for details.

To use a compiler in WebStorm, you need to configure it as a File Watcher based on the relevant predefined template. The linked feature request is a step in the right direction, but it doesn't cover the situation where all you want to do is detect and upload changes as quickly as possible through the existing PHPStorm deployment configuration.WebStorm integrates with compilers that translate Sass, Less, and SCSS code into CSS. In the linked feature request it is noted how long it can take the IDE to detect an external change. The "Upload external changes" option is one I didn't know about, but it doesn't sound like it replaces a file watcher. No one wants to juggle file sync across multiple applications. The point about 3rd party applications isn't relevant, except that it supports my point - if other applications can do it there might just be a need for it in PHPStorm. I get that the PHPStorm file watchers were not originally intended for uploading, but PHPStorm file watchers could stand to include uploading as a task in and of itself, or allow the custom watcher to be configured to do only that. The purpose of file watchers in general is to watch files and respond to changes immediately with relevant actions.
