Skip to content

Commit

Permalink
MAJOR: chore(app): migrate design-system doc to vue3 + vite
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasRichel committed Jun 30, 2023
1 parent 2005e7e commit 526dee0
Show file tree
Hide file tree
Showing 23 changed files with 6,711 additions and 31,585 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"
- uses: actions/setup-python@v4
with:
python-version: "3.10"
Expand All @@ -24,6 +24,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.REPOS_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run semantic-release

build-and-push:
runs-on: [self-hosted, common]
if: contains('
Expand Down
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ src/**/__test__/
# ignore design system app files
src/web/
src/main.js
src/router.js
src/store.js
21 changes: 21 additions & 0 deletions index.html
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>
Loading

0 comments on commit 526dee0

Please sign in to comment.