0
node_modules
には、@bower_components
フォルダ、jquery-powertip
フォルダ、およびその他のフォルダが含まれています。ゴルプのコンテンツを含むフォルダをコピー
gulpタスクを使用して、@bower_components
フォルダのコンテンツとjquery-powertip
フォルダのコンテンツをコピー先のフォルダにコピーします。
私が直面している問題は、その内容のjquery-powertip
フォルダをコピーすることです。
私は次のように試してみました:
gulp.task('move-dependencies', function() {
return gulp.src(['node_modules/@bower_components/**', 'node_modules/jquery-powertip'])
.pipe(gulp.dest(src + '/bower_components'));
});
しかし、これはそれだけの内容ずにjquery-powertip
フォルダをコピーします。
私もこれを試してみました:
gulp.task('move-dependencies', function() {
return gulp.src(['node_modules/@bower_components/**', 'node_modules/jquery-powertip/**'])
.pipe(gulp.dest(src + '/bower_components'));
});
しかし、これはターゲットフォルダの宛先にjquery-powertip
フォルダの内容をコピーします(私は、その内容、ターゲットに「jqueryの-パワーヒント」フォルダが届きませんの)
どうすればこの問題を解決できますか?
申し訳ありませんが、これは、それは私が 'フロントエンド-のmaven-Plugin'をを使用していますので、私は見ることができない例外のいくつかの種類を投げる動作しませんでしたガルプのタスクを実行する。 –
'move-dependencies-2'などのような別のタスクを作成できますか? –
私はマージプラグインを使用しましたが、配列または両方のタスクを返す代わりに、私はこれを行いました: 'return merge(task1、task2)'。 ご協力いただきありがとうございます。 –