Troy

Results 70 comments of Troy

I chose the app preset. When I can update with better detail to match your request, I'll hop on and do so again.

This is now an issue with `fs-extra` as well. If nx "supports" pnpm, but requires hoisting to work, then in my opinion, nx _does not support pnpm_ (expect for the...

I'm running `[email protected]` and this is now an issue with `fs-extra`. It requires it in one of it's files, but doesn't list it _anywhere_ in it's `package.json`. That means even...

@barbados-clemens I'm missing something with your latest comment. My `.npmrc`: ``` strict-peer-dependencies=false auto-install-peers=true ``` My pnpm version is `7.9.3`. Still an issue. Is this going to get fixed in a...

Regarding the `@ObjectID` decorator, there is actually a bug in their code. Here is where the bug is: https://github.com/SierraSoftworks/Iridium/blob/master/lib/Decorators.ts#L144 They simply need to change the order of the calls to...

It seems there is actually a larger issue with their `@Property` decorator not properly requiring an `ObjectId` but always allowing that to be optional...

Okay, I also have this issue. I managed to figure out how to send the output I was seeing to a log so that I can actually read into what...

@RichAyotte it doesn't seem your like change has been pulled in yet. Can you recommend which of the forks one ought to use? Or is progress on this npm module...

For the sake of completeness, here are my errors: ```bash $ npm i v4l2camera > [email protected] install /home/troyw/code-local/experiments/v4l2camera/node_modules/v4l2camera > node-gyp rebuild make: Entering directory '/home/troyw/code-local/experiments/v4l2camera/node_modules/v4l2camera/build' CC(target) Release/obj.target/v4l2camera/capture.o In file included...

... and I'm having it happen again on this test... The function on the class: ```typescript async sheetExists(name:string):Promise { const ctx = this.ctx; const ws = ctx.workbook.worksheets.getItemOrNullObject(name); ws.load('isNullObject'); await ctx.sync();...