Ryan Wheale
Ryan Wheale
Ah, I see what you mean. I will ponder this as I can see how that would be useful. Though one of my goals is to keep a minimal API....
I think this might have to do with the fact that the stencil build/watch task runs in parallel with the webpack task. Usually stencil builds quickly so that the artifacts...
Hmm, this issue intrigues me. As @Shackless suggested, try running an initial stencil build before running storybook. This will ensure that the stencil assets exists as storybook starts for the...
@justinbmeyer - I would need to set up a service to return a 304 response and see how can-connect handles it in isolation. We were using supermap and fixtures. I'll...
Debugging could definitely benefit as change deltas can be stored and used to replay the state of an app leading up to a bug. There's always the obvious benefits of...
I wanted to chime in here as I am wanting to build forms dynamically from a DefineMap's prop definitions. I am able to access `Thing.prototype._define`, but the information therein is...
I'd want that for a super generic drop-in form builder, but for our immediate case we don't mind using a stricter policy for using straightforward prop definitions. There may be...
I am building my first node-acl project, and I am needing to control access on the resource-level. Let's say I have a single blog, 5 authors, 1 admin. The admin...
@manast - Thanks for the response. I went down that route originally and here's why I switched directions: 1. "blog_post_[id]" - is a resource just by it's very name -...
It's my guess that this logic in the abort method should be wrapped in its own private helper of sorts and get called by both `.open` and `.abort`: https://github.com/driverdan/node-XMLHttpRequest/blob/554280a7c509c1ce4d7ad9516b46d182739e8026/lib/XMLHttpRequest.js#L540