Skip to content

Commit

Permalink
fix: cannot find type declarations bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mburakerman committed Dec 26, 2023
1 parent 733a09f commit 3084645
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/storybook/project.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"generatedAt":1703589892191,"hasCustomBabel":false,"hasCustomWebpack":false,"hasStaticDirs":false,"hasStorybookEslint":true,"refCount":0,"packageManager":{"type":"yarn","version":"1.22.21"},"preview":{"usesGlobals":false},"framework":{"name":"@storybook/react-vite","options":{}},"builder":"@storybook/builder-vite","renderer":"@storybook/react","storybookVersion":"7.6.6","storybookVersionSpecifier":"^7.6.4","language":"typescript","storybookPackages":{"@storybook/blocks":{"version":"7.6.6"},"@storybook/react":{"version":"7.6.6"},"@storybook/react-vite":{"version":"7.6.6"},"@storybook/test":{"version":"7.6.6"},"eslint-plugin-storybook":{"version":"0.6.15"},"storybook":{"version":"7.6.6"}},"addons":{"@storybook/addon-links":{"version":"7.6.6"},"@storybook/addon-essentials":{"version":"7.6.6"},"@storybook/addon-onboarding":{"version":"1.0.10"},"@storybook/addon-interactions":{"version":"7.6.6"}}}
{"generatedAt":1703590030809,"hasCustomBabel":false,"hasCustomWebpack":false,"hasStaticDirs":false,"hasStorybookEslint":true,"refCount":0,"packageManager":{"type":"yarn","version":"1.22.21"},"preview":{"usesGlobals":false},"framework":{"name":"@storybook/react-vite","options":{}},"builder":"@storybook/builder-vite","renderer":"@storybook/react","storybookVersion":"7.6.6","storybookVersionSpecifier":"^7.6.4","language":"typescript","storybookPackages":{"@storybook/blocks":{"version":"7.6.6"},"@storybook/react":{"version":"7.6.6"},"@storybook/react-vite":{"version":"7.6.6"},"@storybook/test":{"version":"7.6.6"},"eslint-plugin-storybook":{"version":"0.6.15"},"storybook":{"version":"7.6.6"}},"addons":{"@storybook/addon-links":{"version":"7.6.6"},"@storybook/addon-essentials":{"version":"7.6.6"},"@storybook/addon-onboarding":{"version":"1.0.10"},"@storybook/addon-interactions":{"version":"7.6.6"}}}
10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
{
"name": "react-sparkly-text",
"version": "0.0.43",
"version": "0.0.44",
"author": "mburakerman",
"type": "module",
"types": "/build/ReactSparklyText.d.ts",
"main": "/build/ReactSparklyText.js",
"module": "/build/ReactSparklyText.js",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./build/ReactSparklyText.d.ts",
"import": "./build/ReactSparklyText.js",
"default": "./build/ReactSparklyText.js"
}
},
"files": [
"build/"
],
Expand Down

0 comments on commit 3084645

Please sign in to comment.