A helper named 'basic-dropdown' could not be found
See original GitHub issueUsing ember install ember-basic-dropdown
will add the addon as devDependencies
. Build works with no issues in my addon (incl. test/dummy app). Adding my addon to a consuming app and using my component which uses ember-basic-dropdown gives me A helper named 'basic-dropdown' could not be found
Moving ember-basic-dropdown
to dependencies
and the helper is resolvable but then inside my addon the build breaks with
Merge error: file ember-basic-dropdown.scss exists in /home/mike/projects/remerge/ember-remerge/tmp/broccoli_merge_trees-input_base_path-0wiZhWI4.tmp/1 and /home/mike/projects/remerge/ember-remerge/tmp/broccoli_merge_trees-input_base_path-0wiZhWI4.tmp/30
Pass option { overwrite: true } to mergeTrees in order to have the latter file win.
Issue Analytics
- State:
- Created 8 years ago
- Comments:10 (4 by maintainers)
Top Results From Across the Web
ember.js - A helper named could not be found when trying to ...
{{tasks/new here task/new can be a Component or Helper but can't be template hbs. If you want to include tasks/new inside ...
Read more >cibernox/ember-basic-dropdown - GitHub
The basic dropdown you ember app needs. Contribute to cibernox/ember-basic-dropdown development by creating an account on GitHub.
Read more >We are unable to find the site address. Please try...
I am attempting to build some very simple FLOWS in SharePoint. When I attempt to setup the trigger my site does not appear...
Read more >Helper Functions - Components - Ember Guides
Helper functions are JavaScript functions that you can call from your template. Ember's template syntax limits what you can express to keep the...
Read more >Create a dynamic dependent drop down list in Excel an easy ...
Creating a simple drop down list in Excel is easy. ... The formula in G3 does not need much tweaking - just extend...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
No in this case I was just using basic-dropdown. but This might be related:
I’ve created a new ember project and did
ember install ember-basic-dropdown
Just imagine you want a dropdown for now. And then later at some point:
ember install ember-power-select
And you will get this error. You have to remove basic-dropdown from your
package.json
. Might be worth mentioning in the docsMiguel, actually I made it work by editing ember-cli-build.js and adding a line on it.
I have now other problems regarding power-datepicker but this is another forum.
Thanks