Laravel Elixr 复制方法无效

Laravel Elixr copy method not working

我正在尝试使用 elixr 从我的 vendor/bower_components 文件夹复制一些 js 文件,但是当 运行 gulp 它们不会复制。

elixir(function(mix) { mix.less('app.less')
  .copy('underscore/underscore.js', 'public/js/vendor/underscore.js'); });

gulp没有报错。

[14:12:58] Using gulpfile ~/Public/balloonprinting_l5/gulpfile.js
[14:12:58] Starting 'default'... 
[14:12:58] Starting 'less'... 
[14:12:58] Running Less: resources/assets/less/app.less 
[14:12:59] Finished 'default' after 506 ms 
[14:13:00] gulp-notify: [Laravel Elixir] Less Compiled! 
[14:13:00] Finished 'less' after 1.74 s 
[14:13:00] Starting 'copy'... 
[14:13:00] Finished 'copy' after 2.86 ms

您需要指定完整的源路径:

elixir(function(mix) { mix.less('app.less')
  .copy(
    'bower_components/underscore/underscore.js', 
    'public/js/vendor/underscore.js'
  ); 
});

如您所见,我将 bower_components/ 添加到源路径,这是默认的 bower 包文件夹。