@startinblox/boilerplate 6.0.4 → 6.0.5

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.
@@ -2,6 +2,7 @@ import type { Preview } from "@storybook/web-components-vite";
2
2
 
3
3
  import "@styles/index.scss";
4
4
 
5
+ import "@src/index";
5
6
  import "@mocks/orbit.mock";
6
7
 
7
8
  const preview: Preview = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startinblox/boilerplate",
3
- "version": "6.0.4",
3
+ "version": "6.0.5",
4
4
  "description": "Startin'blox Boilerplate",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -1,13 +1,10 @@
1
- import { html } from "lit";
2
-
3
- import type { Meta, StoryObj } from "@storybook/web-components-vite";
4
-
5
1
  import {
6
- SampleObjects,
7
2
  type ComponentProps,
3
+ SampleObjects,
8
4
  } from "@components/ui/sample-objects";
9
5
 
10
- import "@components/ui/sample-object";
6
+ import type { Meta, StoryObj } from "@storybook/web-components-vite";
7
+ import { html } from "lit";
11
8
 
12
9
  const meta: Meta<{ objects: ComponentProps[] }> = {
13
10
  title: "components/sample-objects",