Nico Jansen
Nico Jansen
Let me do a proposal. I want to create and maintain a good package that provides you with the most accurate location of the call site. I've already started it...
> Another possible option, that might be easier for the test libraries to swallow, is if it was just a plugin instead. That would be fine for me as well,...
Yes, make this a TC39 proposal. The readme links to the [detailed proposal](https://rbuckton.github.io/reflect-metadata), however it is nowhere to be seen other than there. What happened here? I'm interested in using...
Thanks for the quick reply I'm not using npm workspaces. I haven't specified a [`workspaces` property in any of my package.json files](https://docs.npmjs.com/cli/v7/using-npm/workspaces)
If a lerna command was executed, then that is where the problem is. I would expect to find the lerna command somewhere in the logs here, but can't: ``` DEBUG:...
Ah yes, I see the command: ``` lerna bootstrap --no-ci --ignore-scripts -- --ignore-scripts --no-audit --package-lock-only ``` As far as I can see this command is executed in the `e2e` directory:...
Before that command I see these messages: ``` DEBUG: Writing package-lock.json(branch="renovate/node-16.x") DEBUG: Massaging npm lock file before writing to disk(branch="renovate/node-16.x") DEBUG: Writing packages/api/package-lock.json(branch="renovate/node-16.x") DEBUG: Massaging npm lock file before writing...
@rarkins I appreciate your quick feedback. It seems to be done by the renovate code itself. I found it here: https://github.com/renovatebot/renovate/blob/main/lib/modules/manager/npm/post-update/index.ts#L196 ```ts logger.trace({ packageName }, 'Massaging out package name'); lockFileChanged...
I've created a reproduction repo here: https://github.com/nicojs/renovate-bot-issue-16850 I found out some valuable information. It only happens when the `e2e` directory has a `lerna.json` file. Hope that helps! Log file ```...
Hmm I've found a reference to `restart` in the typescript API: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/karma/v4/index.d.ts#L45 I'm now trying to implement it like this: ```js function recoverDisconnect(launcher, server) { server.on('browser_error', (browser) => { if(browser.state...