Aaron Ballard
Aaron Ballard
Figured out a different workaround, not using ngAnimate though, just some custom animations and classes. ``` javascript /* toastr.config*/ onShown(toast) { toast.el .addClass("toasty-show"); } ``` ``` css /*toasty.css*/ @keyframes fadein...
I went back to the project where I could replicate the issue. I updated to [email protected], [email protected], and it looks like the transitions are working correctly for me. Can't guarantee...
Looks like it is missing from this plugin. https://github.com/surma/rollup-plugin-loadz0r/blob/master/loader.ejs#L28 and https://github.com/surma/rollup-plugin-loadz0r/blob/master/loader.ejs#L68 are where it was used in loadz0r, but it looks like it was removed, intentionally or not. Should be...
@cl4ws0n oh, those would probably need a `path.resolve(__dirname, "node_modules", etc)`, looks like you're running out of a subdirectory or something. Sorry I dropped the ball on this, will try to...
Trimmed out everything but the alias plugin, and added path.resolve since it seems the string literal doesn't always work. I did not add the `` sections, since it's a little...
Works for me, I'll try to remember to reference this issue in the pull request so it's easy to see when this can be updated.
Just stumbled across this, but it seems like this doesn't necessarily need a full gui in a separate window, I was wondering more about a tray icon with send/receive/text box...
@quite first one that comes to mind is electron, which is _way_ to heavy for this app in my mind. Tauri might be a good alternative, but it's in early...
Evening! I had a look into https://github.com/mzgoddard/hard-source-webpack-plugin/issues/416 and the associated PR: https://github.com/mzgoddard/hard-source-webpack-plugin/pull/497. As far as I can tell, it's safe to merge. It's already being used in a separate npm...
So the tests aren't passing because `npm run lint` returns errors (calls `prettier --list-different ...`). Running `npm run lint:fix` should get travis to pass, as confirmed [on a branch I...