如何将设置传递到gulp中的postcss模块,尤其是uncss?

时间:2019-10-10 10:28:20

标签: gulp postcss uncss

如果我想在gulp脚本的postcss中调用设置,我将无法将设置传递给uncss模块。

这是我的大任务:

df = pd.DataFrame({'date':pd.to_datetime(['2019-10-10','2019-10-10','2019-10-09']),
                   'col1':['a','b','c']})

s = df['date'].value_counts().sort_index()
#alternative  
#s = df.groupby('date').size()

当我尝试这样做时,我在运行时(当更改CSS文件中的内容时)得到以下错误消息:

print (s)
2019-10-09    1
2019-10-10    2
Name: date, dtype: int64

那么,当我将其作为postcss模块调用时,如何在gulp文件中设置uncss?

谢谢

1 个答案:

答案 0 :(得分:0)

好的,我自己解决了。我忘了在package.json文件中将uncss与postcss-uncss一起使用。现在可以了。

希望您喜欢这项贡献。在所有的Google搜索过程中,我无法在网络上找到此答案。

顺便说一句,此示例显示了如何在Bootstrap上使用uncss。