第一次在grunt中使用autoprefixer

时间:2015-03-03 16:29:27

标签: gruntjs

我安装了当前版本的npm,事情似乎没问题:

autoprefixer加载得很好:

我在本地项目文件夹中创建了一个文件' Grunfile.js'

我在Windows 8.1上运行它

从哪里来?如何告诉grunt检查文件?如何从命令行调用该函数?或者我从命令行调用该函数?

1 个答案:

答案 0 :(得分:0)

在您的目录中,您需要拥有2个文件,即package.json和Gruntfile.js。要创建package.json文件,请运行命令npm init

接下来,您需要将grunt-autoprefixer任务添加到package.json文件中,您可以通过运行npm install grunt-autoprefixer --save-dev来执行此操作。

然后,在Gruntfile.js中,它看起来像这样:

module.exports = function(grunt) {

  grunt.initConfig({
    autoprefixer: {
      options: {
        // Task-specific options go here.
      },
      your_target: {
        // Target-specific file lists and/or options go here.
      },
    },
  });

  grunt.loadNpmTasks('grunt-autoprefixer');

  grunt.registerTask('default', [
    'autoprefixer'
  ]);

};

有关在autoprefixer上编辑设置的更多详细信息,请查看文档:{​​{3}}

要了解有关Grunt的更多信息,请查看https://github.com/nDmitry/grunt-autoprefixer