0

これは私のgulpfileです:

/*jslint maxlen:160*/
 (function (require) {
   "use strict";
   var gulp, tslint;
   gulp   = require('gulp');
   tslint = require('gulp-tslint');
   gulp.task("tslint", function() {
    return gulp.src(["src/**/*.ts"])
               .pipe(tslint())
               .pipe(tslint.reporter("verbose"));
   });
 }(require));

gulp tslintコマンドラインから実行すると、次のエラーが発生します。

[17:26:58] gulpfile /var/www/tests/gulp_error/gulpfile.js を使用しています [17:26:58] 'tslint' を開始しています... [17:26:58] 6.08 ミリ秒後に 'tslint' エラーが発生しました [17:26:58] 17:26:58] TypeError: undefined は Gulp の関数ではありません。(/var/www/tests/gulp_error/gulpfile.js:9:36) module.exports (/var/www/tests/gulp_error/node_modules/gulp/node_modules/orchestrator/lib/runTask.js:34:7) でGulp.Orchestrator._runTask (/var/www/tests/gulp_error/node_modules/gulp/node_modules/orchestrator/index.js:273:3) で Gulp.Orchestrator._runStep (/var/www/tests/gulp_error/node_modules/ gulp/node_modules/orchestrator/index.js:214:10) で Gulp.Orchestrator.start (/var/www/tests/gulp_error/node_modules/gulp/node_modules/orchestrator/index.js:134:8) で /home/ユーザー名/.nvm/versions/node/v0.12.12/lib/node_modules/gulp/bin/gulp.js:129:

私がここで間違っているのは何ですか?コードを含むGithub リポジトリを次に示します。

4

0 に答える 0