Apollinaire Lecocq

Results 18 comments of Apollinaire Lecocq

It would also be nice to have a more complete library of components "out of the box": right now there is only AccountsLoginForm, but if I want to have a...

For the lazy ones out there: [Spectrum.chat stack](https://github.com/withspectrum/spectrum#technologies)

I was not suggesting to go through SimpleSchema for this, simply to look at how they are running their validation. I think they must have the recursive thing. For now...

That would be great indeed. TLDR : vs code gets its typings from `jsconfig.json` and we should create a terminal command that looks at a meteor project and fills this...

Actually, there is also another way : we could provide the typings in an npm package. Maybe directly through https://github.com/DefinitelyTyped/DefinitelyTyped or just as an npm package we publish ourself. We...

I've looked more in detail what they do on vercel.com. Basically, the first thing the html does is put a huge white panel in front of the whole page, check...

I like having an object to avoid deduplicating routes, however I think having an array of content strings limits the evolution of the config. It's easy to add a key...

I tested this with `METEOR_PACKAGE_DIRS` set in my .bashrc and it worked. It will also probably work if you set it every time with the command: ```sh env METEOR_PACKAGE_DIRS="/path/to/my/pckgs:/other/path" meteor-now...

Because of the diverse types of packages we are going to host in this monorepo, we probably won't have one way of running them in dev. A "generic" option that...

You could use graphql aliases as a workaround for this: ```graphql mutation createFoo { foo : createFoo { id } } mutation updateBar { foo: updateFoo { id } }...