I'm working on upgrading my grunt CLI based ember 1.8 app to 1.10 with HTMLbars & have made progress, but my view helpers and components don't work; such as date-input, ember-select, bing-map, product-item. So I'm starting with the date-input view helper which returns this error now - "Ember.Handlebars.helpers.view.call is not a function". This input control is rendered via {{date-input... which is associated to 'DateInputView' in views/date-input.js which extends Ember.TextField. It's also associated to helpers/date-input.js and Ember.Handlebars.makeBoundHelper(). The function inside returns Ember.Handlebars.helpers.view.call() which results in the error. I read something about how maybe my template compiler isn't the new one required or maybe a Component should be used rather than a View Helper, but it seems like there should be a simple fix for the View Helper, don't you think?
ember-template-compiler.js
prior to callingcompile
" so I added the ember compiler into the 'index.html' head as a workaround. I removed that now thinking I had correctly pre-compiled templates, but then this error came back. I guess the overlying question is if I take an ember 1.6 - 1.8 project built with gruntfile tasks, what modules and packages do I need to change so it will build and run on ember 1.10? It seems like some dependencies just aren't lining up. – bobvan