Simon Schick
Simon Schick
This PR was created based on the changes of #1724. I've renamed the metric `system.process.memory.rss.bytes` to `nodejs.memory.rss.bytes` because the value is fetched from within nodejs, not from the system. This...
My goal for the next major version, which will be `v4`, is to move everything out of the `Meteor` object and do everything to have this package doing nothing if...
https://github.com/Meteor-Community-Packages/meteor-roles/blob/32c230ded9cb92b27a3485d143cabf2732fef186/roles/roles_common.js#L543-L557 The function `_getInheritedRoleNames()` is currently used to construct the array `inheritedRoles` on a role-assignment, where it only takes over the parameter `_id`. If you have data stored on the...
Eager loading is - as far as I can see - only really explained in the release notes of Meteor 1.7 (https://docs.meteor.com/changelog.html#changes-21) but neither in the guide for application structure...
My application uses URL templates, as defined in https://tools.ietf.org/html/rfc6570 It would be nice to enter the template and set the parameters to be used in the template.
This repo has already some typescript definitions, but one I'm particularly missing is the typing of variables passed to a slot. ```html {{element.name}} ``` Having types is really important for...
I found one specific reason for the file-count exceeding 2000 files: You only need a symlink that points to the parent folder and thereby create a recursive symlink-chain. This is...
When generating typescript types for json-patch as defined at http://json.schemastore.org/json-patch, I found the output slightly suspicious, which I wanted to pick up here. When I input the following string (where...
I changed the pixel-calculated width (sorry for the typo in the commit-message) to percentage to gain more flexibility. I am using it in a use-case, where the process-bar fills the...
Currently, you only keep track of the versions that have been installed on the device. But for me it would really be beneficial if I could check for a new...