美文网首页
Mac 安装 Grunt

Mac 安装 Grunt

作者: HopeLii | 来源:发表于2019-11-06 16:40 被阅读0次

安装brew

打开http://brew.sh/登陆brewhome官网,上面有安装命令。

安装node

brew install node

安装grunt

npm install -g grunt-cli

安装grunt以及插件

  1. 打开项目目录,输入npm init
  2. 安装grunt, npm install grunt --save-dev
  3. 在当目录创建 Gruntfile.js文件,配置文件结构如下
    官方文档 https://gruntjs.com/sample-gruntfile
module.exports = function(grunt) {

  grunt.initConfig({
    jshint: {
      files: ['Gruntfile.js', 'src/**/*.js', 'test/**/*.js'],
      options: {
        globals: {
          jQuery: true
        }
      }
    },
    watch: {
      files: ['<%= jshint.files %>'],
      tasks: ['jshint']
    }
  });

  grunt.loadNpmTasks('grunt-contrib-jshint');
  grunt.loadNpmTasks('grunt-contrib-watch');

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

};
  1. 打开https://gruntjs.com/plugins,安装需要自己所需要的插件,或者打开https://www.npmjs.com/search?q=grunt也能找到插件
安装sass

mac自带ruby,所以直接在命令行输入。安装成功后,才能正常运行grunt的sass插件

sudo gem install -n /usr/loca/bin sass

相关文章

  • Mac 安装 Grunt

    安装brew 打开http://brew.sh/登陆brewhome官网,上面有安装命令。 安装node 安装gr...

  • mac安装grunt时出现[command not found]

    参考:解决mac安装grunt时出现[command not found]的错误 - 简书

  • 0329-Grunt

    Grunt快速入门 grunt 和grunt插件是通过npm安装管理 安装CLI grunt-cli不等于grun...

  • When it comes to talking about "

    先前作死在 Mac 上安装了 rvm 结果可能是安装失败了,导致 grunt 插件 compass 不能用了 错误...

  • ElasticSearch-5.2.X 安装ElasticSea

    安装nodejs环境 nodejs包中已经包含了nmp测试 安装grunt安装grunt命令行工具grunt-cl...

  • grunt 使用

    1. 安装 nodeJS 2. 全局安装 grunt 和 grunt-cli 3. 创建文件夹grunt-demo...

  • Grunt

    安装 Grunt Grunt 依赖 Node.js 所以在安装之前确保你安装了 Node.js。然后开始安装 Gr...

  • Grunt安装与环境配置

    Grunt 依赖 Node.js 所以在安装之前确保你安装了 Node.js。然后开始安装 Grunt实际上,安装...

  • windows grunt: command not found

    全局安装 grunt grunt-cli 查看node全局安装目录 npm config ls 这里也可以尝试自己...

  • npm安装Grunt后却找不到命令

    使用npm install安装依赖包,其中包括grunt,grunt-cli等。但是当使用grunt命令时,却提示...

网友评论

      本文标题:Mac 安装 Grunt

      本文链接:https://www.haomeiwen.com/subject/ktiubctx.html