Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Vue 3 #96

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions ui/.browserslistrc

This file was deleted.

40 changes: 14 additions & 26 deletions ui/.gitignore
Original file line number Diff line number Diff line change
@@ -1,36 +1,24 @@
# OS Files
.DS_Store
Thumbs.db

# Dependencies
node_modules/

# Dev/Build Artifacts
/dist/
/tests/e2e/videos/
/tests/e2e/screenshots/
/tests/unit/coverage/
jsconfig.json

# Local Env Files
.env.local
.env.*.local

# Log Files
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

# Unconfigured Editors
node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*

#Vs code files
.vscode
!.vscode/launch.json

*.sw?
5 changes: 0 additions & 5 deletions ui/.postcssrc.js

This file was deleted.

21 changes: 0 additions & 21 deletions ui/.vuepress/config.js

This file was deleted.

74 changes: 0 additions & 74 deletions ui/aliases.config.js

This file was deleted.

4 changes: 0 additions & 4 deletions ui/babel.config.js

This file was deleted.

10 changes: 6 additions & 4 deletions ui/public/index.html → ui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,19 @@
<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="shortcut icon" href="<%= webpackConfig.output.publicPath %>hammond.png" />
<link rel="apple-touch-icon" href="<%= webpackConfig.output.publicPath %>touch-icon.png" />
<title><%= webpackConfig.name %></title>
<link rel="shortcut icon" href="/hammond.png" />
<link rel="apple-touch-icon" href="/touch-icon.png" />
<title>Hammond</title>
<!-- Temporary until fontawesome 6 is supported in buefy (see issue: https://github.com/FortAwesome/Font-Awesome/issues/18663) -->
<style>
.icon svg { width: 1em; height: 1em; max-width: 80%; max-height: 80%; }
</style>
</head>
<body>
<!-- This is where our app will be mounted. -->
<div id="app"></div>
<div id="app">
<script type="module" src="/src/main.js"></script>
</div>

<!-- Built files will be auto injected here. -->
</body>
Expand Down
54 changes: 0 additions & 54 deletions ui/jest.config.js

This file was deleted.

15 changes: 0 additions & 15 deletions ui/jsconfig.template.js

This file was deleted.

16 changes: 0 additions & 16 deletions ui/lint-staged.config.js

This file was deleted.

Loading