@nx/storybook 22.2.0-beta.2 → 22.2.0-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/storybook",
3
- "version": "22.2.0-beta.2",
3
+ "version": "22.2.0-beta.4",
4
4
  "private": false,
5
5
  "description": "The Nx Plugin for Storybook contains executors and generators for allowing your workspace to use the powerful Storybook integration testing & documenting capabilities.",
6
6
  "repository": {
@@ -33,16 +33,16 @@
33
33
  "migrations": "./migrations.json"
34
34
  },
35
35
  "dependencies": {
36
- "@nx/devkit": "22.2.0-beta.2",
36
+ "@nx/devkit": "22.2.0-beta.4",
37
37
  "@phenomnomnominal/tsquery": "~5.0.1",
38
38
  "semver": "^7.6.3",
39
39
  "tslib": "^2.3.0",
40
- "@nx/cypress": "22.2.0-beta.2",
41
- "@nx/js": "22.2.0-beta.2",
42
- "@nx/eslint": "22.2.0-beta.2"
40
+ "@nx/cypress": "22.2.0-beta.4",
41
+ "@nx/js": "22.2.0-beta.4",
42
+ "@nx/eslint": "22.2.0-beta.4"
43
43
  },
44
44
  "devDependencies": {
45
- "nx": "22.2.0-beta.2",
45
+ "nx": "22.2.0-beta.4",
46
46
  "storybook": "9.0.6"
47
47
  },
48
48
  "peerDependencies": {
@@ -24,9 +24,9 @@ async function migrate10Generator(tree, schema) {
24
24
  return;
25
25
  }
26
26
  const contents = (0, fs_1.readFileSync)(pathToAiInstructions);
27
- tree.write('ai-migrations/MIGRATE_STORYBOOK_10.md', contents);
27
+ tree.write('tools/ai-migrations/MIGRATE_STORYBOOK_10.md', contents);
28
28
  devkit_1.logger.log(`Storybook 10 requires Storybook Configs to use ESM.
29
- We created 'ai-migrations/MIGRATE_STORYBOOK_10.md' with instructions for an AI Agent to convert CJS Storybook Configs to ESM in your workspace.`);
29
+ We created 'tools/ai-migrations/MIGRATE_STORYBOOK_10.md' with instructions for an AI Agent to convert CJS Storybook Configs to ESM in your workspace.`);
30
30
  await (0, devkit_1.formatFiles)(tree);
31
31
  }
32
32
  exports.default = migrate10Generator;
@@ -18,6 +18,6 @@ async function migrateToStorybook10(tree) {
18
18
  });
19
19
  return [
20
20
  `Storybook 10 requires Storybook Configs to use ESM.`,
21
- `We created 'ai-migrations/MIGRATE_STORYBOOK_10.md' with instructions for an AI Agent to convert CJS Storybook Configs to ESM in your workspace.`,
21
+ `We created 'tools/ai-migrations/MIGRATE_STORYBOOK_10.md' with instructions for an AI Agent to convert CJS Storybook Configs to ESM in your workspace.`,
22
22
  ];
23
23
  }