Igor Vaneev
Igor Vaneev
Here is simpler example that just uses Meteor.defer and no calls to npm packages: ``` posts = new Mongo.Collection('posts'); comments = new Mongo.Collection('comments'); if (Meteor.isServer) { Meteor.startup(function () { posts.remove({});...
Looks like the same happens when Meteor.setInterval is used. As far as I know "Meteor.defer", "Meteor.setInterval" and "Meteor.setTimeout" use "Meteor.bindEnvironment" under the hood, so looks like previous document is lost...
Apparently this package does not feel good when used in ESM project. Worked just fine in Remix project + cjs mode. After switching to esm it started to show the...
Hi @bgentry! My usecase is pretty simple. I need a place to store some job-specific data. I cannot put that data into `args`, as that will interfere with job uniqueness...
TLDR: Implementing metadata merge will make me happy. Hmm. Yes, technically the configurable uniqueness check would solve my case. Conceptually though, I'm not so sure. See, I look at `args`...