優れたブロッコリー シチューを使用して、エクスポートされたアプリケーション ツリーを確認できます。
/* global require, module */
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
var log = require('broccoli-stew').log;
var debug = require('broccoli-stew').debug;
var app = new EmberApp();
// Use `app.import` to add additional libraries to the generated
// output files.
//
// If you need to use different assets in different
// environments, specify an object as the first parameter. That
// object's keys should be the environment name and the values
// should be the asset to use in that environment.
//
// If the library that you are including contains AMD or ES6
// modules that you would like to import into your application
// please specify an object with the list of modules as keys
// along with the exports of each module as its value.
app.import('bower_components/ember-i18n/lib/i18n.js');
app.import('bower_components/raphael/raphael.js');
var finalTree = log(app.toTree());
module.exports = finalTree;
これにより、アプリケーションの非常にきれいなツリーのような出力が得られます。
[ 'assets/app.js',
'assets/app.map',
'assets/app.scss',
...
'assets/vendor.css',
'assets/vendor.js',
'assets/vendor.map',
'crossdomain.xml',
'index.html',
'robots.txt',
'testem.js',
'tests/index.html' ]
そのツリーには、他のファイルの中で avendor.js
とaapp.js
モジュール (予想どおり) があることがわかりますが、それぞれにどのパッケージが配置されているかはわかりません。
フロントエンド (この場合は ) に 1 つ欠けているような気がするので、 ( 経由で) が実際に私が要求したことを実行したことraphael.js
を確認したいと思います (つまり、おそらく に を含めます)ember-cli
EmberApp
raphael.js
vendor.js
app.js
orを直接見るvendor.js
ことはできません (大きすぎる / 何を探すべきかわからない)。/によってインクルードEmberApp
されたファイルを、提供しているのと同じ (類似の) 形式で単純なツリーのような表示にしたい。vendor.js
app.js
broccoli-stew
これは可能ですか?どのように?