运行 grunt 任务的 grunt 语法错误问题

grunt syntax error issue on running grunt task

module.exports = function(grunt){
 grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),

    copy: {
        t1:{
          src: 'dir1/*',
          dest: 'dir2/'
          }
        }
 });
 grunt.loadNpmTasks('grunt-contrib-copy);
 grunt.registerTask('default', ["copy"]);
};

第一次尝试 grunt,找不到任何关于问题的地方,这里有什么问题,当我 运行 grunt copy 它抛出错误。

Loading "Gruntfile.js" tasks...ERROR

SyntaxError: Invalid or unexpected token

Warning: Task "copy" not found. Use --force to continue.*

如有任何帮助,我们将不胜感激。

抱歉,这是语法错误,我的 IDE 没有显示任何错误指示。

grunt.loadNpmTasks('grunt-contrib-copy');

已更正。