-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
introduce rollup build script (#1298)
* introduce rollup build script * remove unused theme * fix theme loading in showcase * remove cypress e2e test, we will yse playwright * inject css for additional components, add missing shell dependencies * emit exports on package.json, more styleINject * add style injection to all remaining package css * make sure licence is published * ensure types are refernced in package.json exports * add top level css to exports in package json * record UI types in correct location in exports * fix style in exports
- Loading branch information
Showing
293 changed files
with
3,362 additions
and
1,454 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,3 +1,8 @@ | ||
declare module "@thomaschaplin/isin-generator" { | ||
export const isinGenerator = () => undefined; | ||
} | ||
|
||
declare module "*.css" { | ||
const content: string; | ||
export default content; | ||
} |
Oops, something went wrong.