@storybook/cli 0.0.0-pr-26219-sha-4865e2ff → 0.0.0-pr-26219-sha-460e98af

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": "@storybook/cli",
3
- "version": "0.0.0-pr-26219-sha-4865e2ff",
3
+ "version": "0.0.0-pr-26219-sha-460e98af",
4
4
  "description": "Storybook's CLI - install, dev, build, upgrade, and more",
5
5
  "keywords": [
6
6
  "cli",
@@ -59,14 +59,14 @@
59
59
  "@babel/core": "^7.23.0",
60
60
  "@babel/types": "^7.23.0",
61
61
  "@ndelangen/get-tarball": "^3.0.7",
62
- "@storybook/codemod": "0.0.0-pr-26219-sha-4865e2ff",
63
- "@storybook/core-common": "0.0.0-pr-26219-sha-4865e2ff",
64
- "@storybook/core-events": "0.0.0-pr-26219-sha-4865e2ff",
65
- "@storybook/core-server": "0.0.0-pr-26219-sha-4865e2ff",
66
- "@storybook/csf-tools": "0.0.0-pr-26219-sha-4865e2ff",
67
- "@storybook/node-logger": "0.0.0-pr-26219-sha-4865e2ff",
68
- "@storybook/telemetry": "0.0.0-pr-26219-sha-4865e2ff",
69
- "@storybook/types": "0.0.0-pr-26219-sha-4865e2ff",
62
+ "@storybook/codemod": "0.0.0-pr-26219-sha-460e98af",
63
+ "@storybook/core-common": "0.0.0-pr-26219-sha-460e98af",
64
+ "@storybook/core-events": "0.0.0-pr-26219-sha-460e98af",
65
+ "@storybook/core-server": "0.0.0-pr-26219-sha-460e98af",
66
+ "@storybook/csf-tools": "0.0.0-pr-26219-sha-460e98af",
67
+ "@storybook/node-logger": "0.0.0-pr-26219-sha-460e98af",
68
+ "@storybook/telemetry": "0.0.0-pr-26219-sha-460e98af",
69
+ "@storybook/types": "0.0.0-pr-26219-sha-460e98af",
70
70
  "@types/semver": "^7.3.4",
71
71
  "@yarnpkg/fslib": "2.10.3",
72
72
  "@yarnpkg/libzip": "2.3.0",
@@ -0,0 +1,10 @@
1
+ // This tsconfig is used by Compodoc to generate the documentation for the project.
2
+ // If Compodoc is not used, this file can be deleted.
3
+ {
4
+ "extends": "./tsconfig.json",
5
+ // Exclude all files that are not needed for documentation generation.
6
+ "exclude": ["../src/test.ts", "../src/**/*.spec.ts", "../src/**/*.stories.ts"],
7
+ // Please make sure to include all files from which Compodoc should generate documentation.
8
+ "include": ["../src/**/*"],
9
+ "files": ["./typings.d.ts"]
10
+ }