-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* MAJOR: chore(build): update build config to drop vue2 support * MAJOR: chore(build): remove build system * MAJOR: refactor(styles): remove scss shared styles, use shared css only * MAJOR: chore(app): migrate design-system doc to vue3 + vite * MINOR: feat: add ability to register smart components with vue plugin * MINOR: refactor: move {main,router,store}.js into web folder
- Loading branch information
1 parent
6ec8fdb
commit 05fff0e
Showing
131 changed files
with
7,041 additions
and
36,149 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# ignore design system folder | ||
src/web/ | ||
# ignore test files | ||
src/**/__test__/ | ||
|
||
# ignore main.js of design system | ||
src/main.js | ||
# ignore design system app files | ||
src/web/ |
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.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0" /> | ||
<link rel="icon" href="/favicon.ico" /> | ||
<title>Design System</title> | ||
|
||
<script type="module" src="/src/main.js"></script> | ||
</head> | ||
<body> | ||
<noscript> | ||
<strong> | ||
We're sorry but the Design System doc doesn't work properly without JavaScript enabled. | ||
Please enable it to continue. | ||
</strong> | ||
</noscript> | ||
<div id="app"></div> | ||
</body> | ||
</html> |
Oops, something went wrong.