0
grupを使用して、ASP.Netコアアプリケーションのnode_modules
からwwwroot
にコピーしています。'Gulpfile.js - 読み込みに失敗しました。出力は表示されますが、エラー情報は表示されません。
私は私がVSタスクランナーを見たときしかし、それだけでエラーを示してかなり単純なgulpfile.js
var gulp = require('gulp');
gulp.task('copy-files', function() {
var assets = {
js: [
'./node_modules/bootstrap/dist/js/bootstrap.js'
],
css: [
'./node_modules/bootstrap/dist/css/bootstrap.css'
]
};
_(assets).forEach(function (assets, type) {
gulp.src(assets).pipe(gulp.dest('./wwwroot/' + type));
});
});
エラーについての詳しい情報はどのように入手できますか?