Open lifeinafolder opened 9 years ago
How does your app.js look like?
Test = Ember.Namespace.create();
Test.App = Ember.Application.create({
data: [], // some static data as placeholder for a BE response
ready: function () {
console.log('Ember Application Ready');
}
});
I am not sure we support custom namespaces, maybe @fivetanley or @tonysherbondy know
I experience the same issue. Is there any solution?
This error happens when recast is unable to parse a file, e.g. the Error: Line 12: Unexpected token ILLEGAL is it's parse error for app.js
However, it's not returning after catching the error which means it's goes to the next step with an invalid object, added a PR https://github.com/fivetanley/ember-cli-migrator/pull/83 to fix the error handling.
Thanks a bunch for the fix. I merged the PR
https://github.com/fivetanley/ember-cli-migrator/pull/84 so far this appears to fix the errors I saw
I tried to migrate an ember app but ran into the following issue:
I am using Ember-Rails gem. Any help would be appreciated.