2016-06-17 3 views
11

私は角テンプレートを作成するための基本的な設定をしています。gulp-angular-templatecacheこのようなファイルやディレクトリがない、lstat 'templates.js'エラー

これはこれは、次のgulpfileに位置するシンプルなHTMLファイルですgulpfile

var gulp = require("gulp"), 
    templateCache = require('gulp-angular-templatecache'); 

gulp.task("tc", function() { 
    return gulp 
     .src("test.html") 
     .pipe(templateCache()) // when I comment out this line I see test.html file is getting copied under dest folder 
     .pipe(gulp.dest("dest")); 
}); 

です。

<div> 
    Test 
</div> 

"gulp tc"を実行すると、以下のエラーが発生します。

[17:49:19] Using gulpfile ~SOME_PATH/gulpfile.js 
[17:49:19] Starting 'tc'... 
fs.js:839 
    return binding.lstat(pathModule._makeLong(path)); 
       ^

Error: ENOENT: no such file or directory, lstat '/SOME_PATH/templates.js' 
    at Error (native) 
    at Object.fs.lstatSync (fs.js:839:18) 
    at DestroyableTransform.TransformStream [as _transform] (/SOME_PATH/node_modules/gulp-angular-templatecache/node_modules/gulp-header/index.js:38:12) 
    at DestroyableTransform.Transform._read (/SOME_PATH/node_modules/gulp-angular-templatecache/node_modules/gulp-header/node_modules/through2/node_modules/readable-stream/lib/_stream_transform.js:159:10) 
    at DestroyableTransform.Transform._write (/SOME_PATH/node_modules/gulp-angular-templatecache/node_modules/gulp-header/node_modules/through2/node_modules/readable-stream/lib/_stream_transform.js:147:83) 
    at doWrite (/SOME_PATH/node_modules/gulp-angular-templatecache/node_modules/gulp-header/node_modules/through2/node_modules/readable-stream/lib/_stream_writable.js:313:64) 
    at writeOrBuffer (/SOME_PATH/node_modules/gulp-angular-templatecache/node_modules/gulp-header/node_modules/through2/node_modules/readable-stream/lib/_stream_writable.js:302:5) 
    at DestroyableTransform.Writable.write (/SOME_PATH/node_modules/gulp-angular-templatecache/node_modules/gulp-header/node_modules/through2/node_modules/readable-stream/lib/_stream_writable.js:241:11) 
    at write (/SOME_PATH/node_modules/gulp-concat/node_modules/through2/node_modules/readable-stream/lib/_stream_readable.js:623:24) 
    at flow (/SOME_PATH/node_modules/gulp-concat/node_modules/through2/node_modules/readable-stream/lib/_stream_readable.js:632:7) 

これは「Hello World」エクササイズと同じくらい簡単ですが、動作させることはできません。私はマックOS、ubuntuとWindowsマシン上でそれを試してみました。運がなくても、常に同じエラーです。どこが間違っていますか?

ところで、package.jsonの依存関係は次のようになります。

"dependencies": { 
    }, 
    "devDependencies": { 
    "gulp": "^3.9.1", 
    "gulp-angular-templatecache": "^1.8.0" 
    } 

EDIT:空のtemplates.jsファイルを検索する場所に追加すると動作します。

+0

私は今正確なエラーを抱えています、それは私を狂ってしまいます。ホープs.oは私に答えを与えることができます.... –

答えて

関連する問題