Ember-cli 将文件移动到外部文件夹

Ember-cli moving files to an external folder

所以我有一个 ember CLI 应用程序,类似于 'c:/foo/bar/ember' 并希望将最终生成的文件复制到 'c:/foo/emberApp'。

当我构建 broccoli 时,我将所有构建的文件放入 c:/foo/bar/ember/dist。我想挑选其中一些文件并将它们移动到 c:/foo/emberApp。最好的方法是什么?我见过人们使用咕噜声,但这意味着我失去了西兰花速度的提升。我的 brocfile 只是基本的 ember-cli 文件,没有修改。如果有任何帮助,我将在下面包括。

Brocfile.js

var EmberApp = require('ember-cli/lib/broccoli/ember-app');


var app = new EmberApp({
    storeConfigInMeta: false
});


module.exports = app.toTree(); 

您可以像这样传递 output-path 参数来构建 ember build --output-path=/your/desired/path

可以在 this section of the docs and in the source 中找到更多信息。