Joel Kuzmarski

Results 88 comments of Joel Kuzmarski

Personally I'd only use "empty end tags" to close elements that have no nested elements within. So for one-liners.

The syntax doesn't change the fact that I'd implement "empty end tags" as one-liners. `` is obtuse compared to ``, ``, etc... Any use cases having to do with fixing...

Looks like `@feathersjs/socketio` is meant for server-side. Using `@feathersjs/socketio-client` results in no error. https://docs.feathersjs.com/migrating.html#client-side-feathers I'm not sure if steal should have been able to resolve the path regardless, or if...

Fixed the `{{>name context}}` code to use DefineMap: ```diff diff --git a/public/index.js b/public/index.js index b80c4ab..0656095 100644 --- a/public/index.js +++ b/public/index.js @@ -1,6 +1,20 @@ -import { Component, realtimeRestModel } from...

@chasenlehara https://codepen.io/leoj3n/pen/LYEXEMz?editors=0010 `{{entities(child)}}` -> `{{>entities child}}` and "Unable to find key" warnings subside.

If you have a `scss` file like that: ```scss .sf-device { --device-not-used: 8px; --device-yes-used: 9px; width: var(--device-yes-used); } ``` Then `yarn run update-components-docs` generates an array like that: ```js [...

Cool, I'd use this too.

Was wondering why something like this wasn't already supported. Can't find any discussion directly about this, and can't think of any reason not to do this, as it's basically the...

> You've done a good thing by limiting it to environment variables To clarify for anyone else passing by, this means the template replacement only affects values in: - `custom-environment-variables.*`...

@lorenwest Is there a reason why [env vars](https://github.com/lorenwest/node-config/wiki/Environment-Variables#custom-environment-variables) are only replaced in `custom-environment-variables.*`? Coming from https://docs.feathersjs.com/api/configuration.html (which allows env vars in any `*.js`/`*.json` file) I don't really see a reason...