Skip to content

Commit 338b8e4

Browse files
authored
Merge pull request #59 from BeeInventor/develop
fix: can not import by package root
2 parents b692e86 + 6f35556 commit 338b8e4

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@beeinventor/dasiot-react-component-lib",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"module": "lib/index.js",
55
"types": "lib/index.d.ts",
66
"files": [

src/components/OrgText/OrgText.stories.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { Meta, Story } from '@storybook/react';
33

4-
import OrgText, { OrgTextProps } from '.';
4+
import OrgText, { OrgTextProps } from './OrgText';
55

66
export default {
77
title: 'Components/OrgText',
File renamed without changes.

src/components/OrgText/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from './OrgText';

0 commit comments

Comments
 (0)