mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
skip sb-binary automigration in nx projects
This commit is contained in:
parent
de9b793ff3
commit
f5c29e7bfb
@ -23,6 +23,17 @@ describe('storybook-binary fix', () => {
|
||||
});
|
||||
|
||||
describe('sb >= 7.0', () => {
|
||||
it('should no-op in NX projects', async () => {
|
||||
const packageJson = {
|
||||
dependencies: { '@storybook/react': '^7.0.0', '@nrwl/storybook': '^15.7.1' },
|
||||
};
|
||||
await expect(
|
||||
checkStorybookBinary({
|
||||
packageJson,
|
||||
})
|
||||
).resolves.toBeFalsy();
|
||||
});
|
||||
|
||||
it('should add storybook dependency if not present', async () => {
|
||||
const packageJson = {
|
||||
dependencies: {
|
||||
|
@ -40,7 +40,8 @@ export const sbBinary: Fix<SbBinaryRunOptions> = {
|
||||
`);
|
||||
}
|
||||
|
||||
if (semver.lt(storybookCoerced, '7.0.0')) {
|
||||
// Nx provides their own binary, so we don't need to do anything
|
||||
if (allDeps['@nrwl/storybook'] || semver.lt(storybookCoerced, '7.0.0')) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user