[Bug] Sencha compile not including classes when creating with alias
After compiling, I am receiving the following errors in my code:
Uncaught Error: [Ext.createByAlias] Cannot create an instance of unrecognized alias: series.pie
Uncaught Error: [Ext.createByAlias] Cannot create an instance of unrecognized alias: series.column
I am defining my charts using aliases for both series and axes:
Code:
series: [
{
type: 'column',
...
}
]
When I change to this method of creating the series:
Code:
series: [
Ext.create('Ext.chart.series.Column', {
...
})
]
and then compile again, the series errors are gone, and I am getting:
Uncaught Error: [Ext.createByAlias] Cannot create an instance of unrecognized alias: axis.numeric
It appears the compile is not including classes when they are created using aliases.
I am using v3.0.0.250 on windows