Ryan McGinty
Ryan McGinty
> I've came across a similar issue with my team while working on our company's software overhaul. > > Just for the record, we're using Storybook to document all kinds...
@raketeFlo does the `nx release publish` command actually run the build or do you have to do that manually? I noticed you still have the dependsOn in place, but you...
I am also experiencing a similar issue. `npm ci` fails after publish run due to peer dependency issues after release command updates the lock file incorrectly. Checking to see if...
Still not working for me, below is the error on CI/CD. It requires re-running npm i to regenerate the lock file to fix it. Using Nx 18.0.8 ``` npm WARN...
Finally figured out a workaround in programmatic api: ``` const {workspaceVersion, projectsVersionData} = await releaseVersion({ specifier: options.version, dryRun: options.dryRun, verbose: options.verbose, gitCommit: false, // Commit will be created in the...
It is working for me, however I have an issue where it always prepends project name with a`$` like `chore($project-name):` ...
One other note, the test passed in data-grid-pro v6 when experimentalFeatures -> ariaV7 was enabled like: `experimentalFeatures: {ariaV7: true},`
Thank you for your response @romgrk and after looking at the output it does appear to be valid. I don't see any aria-hidden or other tags that would result in...
@romgrk it appears the issue is with the negative tab index being read by screen readers and invalidating the role="presentation", see the comment here -> https://github.com/dequelabs/axe-core/issues/4419#issuecomment-2069800095 > Thanks for the...