Home > Grunt


Gruntタスクでコマンドを実行する方法

まず、Gruntの設定ファイル(通常はGruntfile.js)内で、grunt-execパッケージをインストールし、タスクを定義します。// Gruntfile.js module.exports = function(grunt) { grunt.loadNpmTasks('grunt-exec'); grunt.initConfig({ exec: { myCommand: 'echo Hello, Grunt!' } }); grunt.registerTask('myTask', ['exec:myCommand']); };>>More


MacでGruntをインストールする方法と使い方

Node.jsのインストール: GruntはNode.js上で動作するため、まずNode.jsをインストールする必要があります。公式ウェブサイト(https://nodejs.org/)から最新バージョンのNode.jsをダウンロードし、インストーラーを実行してインストールします>>More