@theholocron/storybook-config 3.1.0 → 3.2.1

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/index.ts +15 -0
  2. package/package.json +2 -2
package/index.ts ADDED
@@ -0,0 +1,15 @@
1
+ import { setProjectAnnotations } from "@storybook/react";
2
+ import { storybookConfig } from "./main";
3
+ import { initialize as initMSW, storybookPreview } from "./preview";
4
+ import { storybookTestRunner } from "./test-runner";
5
+
6
+ export type { StorybookConfig } from "./main";
7
+ export type { Preview } from "./preview";
8
+
9
+ export default {
10
+ initMSW,
11
+ setProjectAnnotations,
12
+ storybookConfig,
13
+ storybookPreview,
14
+ storybookTestRunner,
15
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/storybook-config",
3
- "version": "3.1.0",
3
+ "version": "3.2.1",
4
4
  "description": "A Storybook configuration for writing tested components within the Galaxy.",
5
5
  "homepage": "https://github.com/theholocron/configs/tree/main/packages/storybook-config#readme",
6
6
  "bugs": "https://github.com/theholocron/configs/issues",
@@ -11,7 +11,7 @@
11
11
  "license": "GPL-3.0",
12
12
  "author": "Newton Koumantzelis",
13
13
  "type": "module",
14
- "main": "index.js",
14
+ "main": "index.ts",
15
15
  "files": [
16
16
  "main.ts",
17
17
  "preview.ts",