• Phpstorm watcher less + git?

    Vanger
    @Vanger
    Например отказаться от watcher в Phpstorm в сторону Gulp или Grunt. Тем более что PHPStorm из коропки поддерживает Grunt.

    less: {
                development: {
                    options: {
                        compress: true  //minifying the result
                    },
                    files: {
                        //compiling frontend.less into frontend.css
                        "<%= DestPath %>/css/style.css": "<%= SourcesPath %>/less/style.less",
                        "<%= DestPath %>/css/bootstrap.css": "<%= SourcesPath %>/less/bootstrap.less"
                        //compiling backend.less into backend.css
                       "<%= DestPath %>/css/backend.css":"<%= SourcesPath %>/less/backend.less"
                    }
                }
            },
    Ответ написан
    2 комментария