-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(button): handle dynamic styles within typescript
- Loading branch information
1 parent
cef6905
commit 4f1f1bc
Showing
11 changed files
with
172 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@sipe-team/button": patch | ||
--- | ||
|
||
fix(button): handle dynamic styles within typescript |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
import { defineConfig } from 'tsup'; | ||
import defaultConfig from '../../tsup.config'; | ||
|
||
export default defineConfig({ | ||
entry: ['src/index.ts'], | ||
clean: true, | ||
dts: true, | ||
format: ['esm', 'cjs'], | ||
}); | ||
export default defaultConfig; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,11 @@ | ||
import { defineConfig } from 'vitest/config'; | ||
import { defineProject, mergeConfig } from 'vitest/config'; | ||
import defaultConfig from '../../vitest.config'; | ||
|
||
export default defineConfig({ | ||
test: { | ||
coverage: { | ||
include: ['./src/**/*.{ts,tsx}'], | ||
exclude: ['./src/**/*.stories.tsx', './src/env.d.ts', './src/index.ts'], | ||
export default mergeConfig( | ||
defaultConfig, | ||
defineProject({ | ||
test: { | ||
setupFiles: './vitest.setup.ts', | ||
}, | ||
css: true, | ||
environment: 'happy-dom', | ||
globals: true, | ||
passWithNoTests: true, | ||
setupFiles: './vitest.setup.ts', | ||
watch: false, | ||
}, | ||
}); | ||
}), | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
import '@testing-library/jest-dom/vitest'; | ||
import '@testing-library/jest-dom'; |
Oops, something went wrong.