You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The only step in the blueprint (blueprints/ember-cli-blanket/index.js) that gets ran is the this.addBowerPackageToProject call. The other steps were not ran for me in multiple test installs. My version of Ember CLI is 1.13.8.
The text was updated successfully, but these errors were encountered:
Hmm, we're definitely behind on the ember-cli version (there is a PR for this), but I've been working with the same hooks for another cli based project in 1.13.8, so they should still be legitimate.
I'll poke into this and see if the promise chain is being broken after the CLI upgrade PR is merged.
The second step in the blueprint for tests/index.html is failing. tests/index.html has only LF by default. require('os').EOL returns CR on windows. The code is looking to find the "after" line by matching on a test string that ends with CR. Its not found because the line ends with LF. No change is made to the file. A promise is not returned from insertIntoFile(). It fails silently.
It probably should look for both LF and CRLF? I can put together a PR if that seems reasonable.
The only step in the blueprint (blueprints/ember-cli-blanket/index.js) that gets ran is the
this.addBowerPackageToProject
call. The other steps were not ran for me in multiple test installs. My version of Ember CLI is 1.13.8.The text was updated successfully, but these errors were encountered: