Skip to content

Commit 811feba

Browse files
Merge pull request #13 from functional-ui/fix-types
Fixed Types Exporting
2 parents c089bc8 + 1ae58d6 commit 811feba

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.3] - 2024-06-13
9+
* [Infra] - Fixed types exporting
10+
811
## [1.0.2] - 2024-06-13
912
* [FuiOptionGroup] - Fixed component import
1013

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "functional-ui-kit",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "Functional UI Kit",
55
"homepage": "https://functional-ui-kit.com/",
66
"scripts": {

vite.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default defineConfig({
4141
include: 'src/components/*/*.{ts,tsx}',
4242
exclude: ['src/components/**/*.stories.{ts,tsx}'],
4343
beforeWriteFile: (filePath, content) => ({
44-
filePath: filePath.replace(/fui-[a-z]+.d.ts/, 'index.d.ts').replace(/components\//, ''),
44+
filePath: filePath.replace(/fui(-[a-z]+)+.d.ts/, 'index.d.ts').replace(/components\//, ''),
4545
content,
4646
}),
4747
})],

0 commit comments

Comments
 (0)