'use strict' module.exports = (grunt) -> # プラグインの読み込み grunt.loadNpmTasks 'grunt-ect' # グラントタスクの設定 grunt.initConfig # config dir: src: 'src' dest: 'dist' pkg: grunt.file.readJSON "package.json" # grunt-ect ect: options: root: '<%= dir.src %>/template' index: src: 'index.ect' dest: '<%= dir.dest %>/index.html' variables: title: 'タイトル' description: 'サイトの説明です。' news: src: 'news/news.ect' dest: '<%= di