Daniel Nelson

Results 5 issues of Daniel Nelson

I always use Ember's generators, even when creating my Dummy app's routes. Every time that I spun up `ember-cli-addon-docs` I'd translate the _getting started_ instructions to the `ember generate ...`...

I've noticed that trying to specify paths containing variable expressions in my user/workspace settings don't seem to work. I don't know a darn thing about VS Code extension development, so...

Console deprecation warnings are now present with Ember-3.25 as `htmlSafe` should actually be imported via `@ember/template`. Essentially replace: `import { htmlSafe } from '@ember/string'` with `import { htmlSafe } from...

It doesn't appear that this plugin respects _utils_ in the same way that it respects other elements of EmberJS. My `app/utils/` classes are hard to find using `CMD-O` _class search_....

bug
beginner-friendly

In npm-0.11+ the `hash.update(...)` function must receive a buffer to create consistent and reliable hashes. Instead the current codebase is processing a String value instead of the Buffer. I've made...