@storybook/core-common 7.2.3 → 7.3.0

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +3 -3
package/dist/index.d.ts CHANGED
@@ -160,7 +160,7 @@ declare function isPreservingSymlinks(): boolean | undefined;
160
160
  declare function getPreviewBodyTemplate(configDirPath: string, interpolations?: Record<string, string>): string;
161
161
  declare function getPreviewHeadTemplate(configDirPath: string, interpolations?: Record<string, string>): string;
162
162
 
163
- declare function validateFrameworkName(frameworkName: string | undefined): void;
163
+ declare function validateFrameworkName(frameworkName: string | undefined): asserts frameworkName is string;
164
164
 
165
165
  declare function validateConfigurationFiles(configDir: string): Promise<void>;
166
166
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/core-common",
3
- "version": "7.2.3",
3
+ "version": "7.3.0",
4
4
  "description": "Storybook framework-agnostic API",
5
5
  "keywords": [
6
6
  "storybook"
@@ -43,8 +43,8 @@
43
43
  "prep": "../../../scripts/prepare/bundle.ts"
44
44
  },
45
45
  "dependencies": {
46
- "@storybook/node-logger": "7.2.3",
47
- "@storybook/types": "7.2.3",
46
+ "@storybook/node-logger": "7.3.0",
47
+ "@storybook/types": "7.3.0",
48
48
  "@types/find-cache-dir": "^3.2.1",
49
49
  "@types/node": "^16.0.0",
50
50
  "@types/node-fetch": "^2.6.4",