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