GRUNT UNCSS错误

时间:2016-02-23 14:52:27

标签: php codeigniter gruntjs uncss

当我运行grunt时,我一直都会收到错误,任何人都知道如何在php中使用UNCSS吗?

Fatal error: spawn C:\Users\**.**\Desktop\PhpstormProjects\**\node_modules\phantomjs\lib\phantom\phantomjs.exe ENOENT

我不知道如何解决这个问题,我的UNCSS文件看起来像

 uncss: {
    dist: {
        options: {

            stylesheets  : ['css/clean.min.css'],
            style: 'compressed'
        },

        files: [
            //{ src: '*.html', dest: 'css/uncss/compiled.min.css'}
            {
                'css/app.clean.css': ['**/*.php']
            }
        ]
    }
},

非常感谢所有帮助

1 个答案:

答案 0 :(得分:2)

经过谷歌的一些研究后,我将得出结论,你不能使用动态php文件进行解密(正如我在上面的评论中所述)。

您应该为uncss生成页面的html结果,或者使用页面链接。

请阅读这篇文章(它是关于Wordpress的,但你应该得到基本的想法)

Liam Gladdy blog article about uncss