Ajit Panigrahi
Ajit Panigrahi
I am willing to open a PR with this change if this is fine "as-is". This solution belongs to the OP in the linked StackOverflow [answer](https://stackoverflow.com/a/49402091).
@sindresorhus Thank you! I think with this the pending changes would be documentation? - [ ] Mention/link in Repository README - [ ] Update on paka.dev? Or is that auto-generated...
The Ace editor (which Inky uses) has support for auto-correct now: [Wiki](https://github.com/ajaxorg/ace/wiki/How-to-enable-Autocomplete-in-the-Ace-editor)
I think `--latest` (if added) shouldn't be same as `--lts`. Instead I suggest it should install the "current" version, i.e., the next "to-be-stable" version. Now, that would point to `18.8.0`
I had opened an issue for this last January: #1028 In short, no, the current implementation does not support adding specific icons only in any way.
Just confirming: I can reproduce this on **Firefox**, but not in Google Chrome or Safari.
#72 covers a discussion on this. The current project setup can not easily support `ng-packagr` for building a publishable Angular library since the Angular CLI is a required tool here.
The directive is fairly simple; you can copy and maintain your version for most projects. I have made [my library](https://www.npmjs.com/package/ng-auto-animate) just for Angular because ~I plan to support~ I am...
Yeah, it's unfortunate but necessary in "Angular-land" because Angular code must be compiled and exported into a specific format for usage as a library (not talking about transpilation). They're not...
In that case, please look at [ng-packagr](https://github.com/ng-packagr/ng-packagr), the primary dependency for building these libraries. Additional notes (from me making the wrapper library): - Peer dependencies: ``` "peerDependencies": { "@angular/common": "^16.0.0",...