First, a PSA
Please do not use this package! This is a personal, experimental branch.
Use the original package at:
https://github.com/tomdale/glimmer-analyzer.git
Glimmer Analyzer
A library for doing some static analysis of Glimmer apps.
Installation
yarn add glimmer-analyzer
Creating an Analyzer
import Analyzer from 'glimmer-analyzer';
let analyzer = new Analyzer('/path/to/glimmer/app');
Template Dependencies
dependenciesForTemplate(componentName)
Discover the child components used in a component's template.
import Analyzer from 'glimmer-analyzer';
let analyzer = new Analyzer('/path/to/glimmer/app');
analyzer.dependenciesForTemplate('my-component');
recursiveDependenciesForTemplate(componentName)
Discover the child components used in a component's template, and the components
used in the child components' templates, and so on, until the entire dependency
graph has been walked.
import Analyzer from 'glimmer-analyzer';
let analyzer = new Analyzer('/path/to/glimmer/app');
analyzer.dependenciesForTemplate('my-component');
Treeshaken Resolution Maps
Glimmer uses a resolution
map to
map components used in your templates to their underlying modules. Instead of
building a resolution map that contains everything for the whole app, you can
build a map that contains the modules for just a single component (an entry
point for a route, for example) and all of its dependencies.
resolutionMapForEntryPoint
Returns the resolution map for the app with everything but the given component
and its dependencies removed. If you don't provide the map as the second
argument, it will try to generate one for you.
import Analyzer from 'glimmer-analyzer';
let analyzer = new Analyzer('/path/to/glimmer/app');
let resolutionMapForWholeApp = ...;
analyzer.resolutionMapForEntryPoint('my-component', resolutionMapForWholeApp);