Badisi

Results 117 comments of Badisi

For one, `angular` is using a `tsconfig.json` with `"module": "es2020"` whereas for the tests we need a `tsconfig.json` with `"module": "commonjs"`

The schematics already adds a second tsconfig file in `/test`, which is great ! But the issue here is that the file is named `tsconfig.e2e.json` which Vscode doesn't know about......

Working on it as we speak but also working on other improvements too ;-)

For this one to work completely we would also have to make sure that the `wdio.conf.ts` is located in the `/test` folder. Otherwise Vscode would also complain about typing.

The main issue here is that `wdio` is not able to parse `wdio.conf.ts` -> `Unexpected token 'export'` Using `autoCompileOpts` in the configuration file won't work as we can't parsed the...

@thdk, I'm using the default commit convention, nothing fancy here. My real concern is that when using `independent` mode and `projectChangelogs` level, changelogs should only be scoped to a **project**...

I also found that there is an inconsistency in the way that commits are filtered for independent projects. - When resolving the `next semver version`, commits are filtered this way:...

### Fix To fix the issue, this is the `patch-package` I'm using: ```diff diff --git a/node_modules/nx/src/command-line/release/changelog.js b/node_modules/nx/src/command-line/release/changelog.js index 6b5e7c3..cfd5cda 100644 --- a/node_modules/nx/src/command-line/release/changelog.js +++ b/node_modules/nx/src/command-line/release/changelog.js @@ -351,6 +351,7 @@ function createAPI(overrideReleaseConfig)...

My personal use case is to dispatch multiple events in a row, not to dispatch an event to multiple repos. The goal is to use your workflow once instead of...

Could be the signin silent with the hidden iframe. Even if your tokens have expired, if the user still has an opened session at the idp, this technic allows to...