Grunt 新手,试图让 Gruntfile 为 wordpress 项目运行。我的根目录中有一个 package.json 和 Gruntfile.js。我想添加 grunt-postcss,但是当我按照说明操作时,我不断收到“警告:找不到任务“grunt-postcss”。” 我可能错误地设置了 Grunt,因为无论我运行什么,我都找不到任务。这是我的 Gruntfile 内容:
module.exports = function(grunt) {
grunt.initConfig({
postcss: {
options: {
map: true, // inline sourcemaps
processors: [
require('pixrem')(), // add fallbacks for rem units
require('autoprefixer')({browsers: 'last 2 versions'}), // add vendor prefixes
require('cssnano')() // minify the result
]
},
dist: {
src: 'css/*.css'
}
}
});
grunt.loadNpmTasks('grunt-postcss');
grunt.registerTask('default', ['grunt-postcss']);
};