Skip to content

Debugging your application dependencies

Phil Leggetter edited this page May 5, 2014 · 8 revisions

Dependency Analysis Commands

This content has been moved to http://bladerunnerjs.org/docs/use/commandline/

Bundler Logging

Given a default aspect, with an 'index.html' page, and an xml config file ('config.xml'), both pointing to 'Class1.js', which itself points to 'Class2.js', we should get the following log output:

Handling logical request '/js/js.bundle' for app 'app1'.
Aspect 'default' identified as context for request '/js/js.bundle'.
Bundler 'JsCompositeBundler' identified as handler for request '/js/js.bundle'.
Aspect 'default' contains seed files 'index.html', 'resources/xml/config.xml'.
App 'app1' has source locations 'aspect-default/src', 'lib/lib1', 'bladeset-default/blades/blade-b1/src'.
File 'index.html' depends on 'novox/Class1.js'.
File 'resources/xml/config.xml' has no dependencies.
File 'novox/Class1.js' depends on 'novox/Class2.js'.
File 'novox/Class2.js' has no dependencies.

Notice how all paths are relative to the aspect, so they are easier to read.

Clone this wiki locally