CLion 2021.1 Help

Minifying CSS

Minification or compression means removing all unnecessary characters, such as spaces, new lines, comments, without changing the functionality of the source code. During development and debugging, these characters make code easier to read. At the production stage, they only increase the size of code to be transferred.

Most often compression is done as a step in your build process, with tools like webpack. If you're not using build tools, you can use stand-alone tools, such as CSSO or cssnano.

To minify your code automatically, you need to configure a CSSO File Watcher which will track changes to your files and run CSSO.

By default, minification starts as soon as a CSS file in the File Watcher's scope is changed and saved. You can specify other events that invoke CSSO. Learn more from File Watchers.

The generated minified code is stored in a separate file with the name of the source CSS file and the extension min.css. The location of this generated file is defined in the Output paths to refresh field of the New Watcher dialog. However, in the Project Tree, the file with the minified code is shown under the source CSS file which is displayed as a node. To change this default presentation, configure file nesting in the Project tool window.

Before you start

  1. Make sure you have Node.js on your computer.

  2. Make sure the CSS plugin are enabled on the Settings/Preferences | Plugins page, tab Installed, see Managing plugins for details.

  3. Install and enable the File Watchers plugin on the Settings/Preferences | Plugins page, tab Marketplace, as described in Installing plugins from JetBrains repository.

Install csso-cli globally

  • In the embedded Terminal(Alt+F12), type:

    npm install -g csso-cli

Create a CSSO File Watcher

  1. In the Settings/Preferences dialog Ctrl+Alt+S, click File Watchers under Tools. The File Watchers page that opens shows the list of already configured File Watchers.

  2. Click Add button or press Alt+Insert and select the CSSO CSS Optimizer predefined template from the list.

    Create CSSO watcher: Click Add and select template

    The New Watcher dialog opens.

    Create CSSO watcher: New Watcher dialog with default settings
  3. In the Program text box, specify the location of the csso executable file.

    If you installed csso-cli through the Node Package Manager, CLion locates the package itself and fills in the field automatically with the csso alias Otherwise, type the path manually or click Icons general open disk hover and select the file location in the dialog that opens.

  4. Accept the default File Watcher settings or reconfigure them, if necessary, as described in File watchers, and click OK. CLion brings you back to the File Watchers page where the new File Watcher is added to the list:

    Create CSSO watcher: New Watcher added to the list
  5. Make sure the Enabled checkbox is selected.

    By default, the File Watcher will be available in the current project. To use it in other projects, select Global from the Level list.

Last modified: 20 July 2021