Skip to content

Commit 27e93ff

Browse files
authored
Merge branch 'main' into 1386-remote-folder-cleanup
2 parents 93e6774 + 6fb63d0 commit 27e93ff

File tree

5 files changed

+62
-26
lines changed

5 files changed

+62
-26
lines changed

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
with:
2222
comment-summary-in-pr: always
2323
fail-on-severity: high
24-
allow-licenses: MIT, MIT-0, Apache-2.0, BSD-3-Clause, BSD-3-Clause-Clear, ISC, BSD-2-Clause, Unlicense, CC0-1.0, 0BSD, X11, MPL-2.0, MPL-1.0, MPL-1.1, MPL-2.0, OFL-1.1, Zlib, BlueOak-1.0.0
24+
allow-licenses: MIT, MIT-0, Apache-2.0, BSD-3-Clause, BSD-3-Clause-Clear, ISC, BSD-2-Clause, Unlicense, CC0-1.0, 0BSD, X11, MPL-2.0, MPL-1.0, MPL-1.1, MPL-2.0, OFL-1.1, Zlib, BlueOak-1.0.0, Ubuntu-font-1.0
2525
fail-on-scopes: development, runtime
2626
allow-dependencies-licenses: 'pkg:npm/caniuse-lite'

index.html

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -31,28 +31,6 @@
3131
<link rel="manifest" href="/manifest.json" />
3232
<link rel="shortcut icon" href="/favicon.ico" />
3333
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon.png" />
34-
<link rel="stylesheet" href="//cdn.jsdelivr.net/chartist.js/latest/chartist.min.css" />
35-
36-
<script
37-
src="https://cdn.jsdelivr.net/chartist.js/0.11.0/chartist.min.js"
38-
integrity="sha384-BnJvHBnDyKVZFn8I5i6LHXOscPlizGS+cgZi1crgdHmjU9lVKXwtNsqXQ521P++Z"
39-
crossorigin="anonymous"
40-
></script>
41-
<link
42-
rel="stylesheet"
43-
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons"
44-
/>
45-
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
46-
<link
47-
rel="stylesheet"
48-
href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
49-
/>
50-
51-
<link
52-
rel="stylesheet"
53-
type="text/css"
54-
href="https://cdn.jsdelivr.net/npm/diff2html/bundles/css/diff2html.min.css"
55-
/>
5634

5735
<!--
5836
Notice the use of / in the tags above.

package-lock.json

Lines changed: 44 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@
8585
},
8686
"dependencies": {
8787
"@aws-sdk/credential-providers": "^3.980.0",
88+
"@fontsource/roboto": "^5.2.9",
8889
"@material-ui/core": "^4.12.4",
8990
"@material-ui/icons": "4.11.3",
9091
"@primer/octicons-react": "^19.21.2",
@@ -102,12 +103,14 @@
102103
"express-http-proxy": "^2.1.2",
103104
"express-rate-limit": "^8.2.1",
104105
"express-session": "^1.19.0",
106+
"font-awesome": "^4.7.0",
105107
"history": "5.3.0",
106108
"isomorphic-git": "^1.36.3",
107109
"jsonwebtoken": "^9.0.3",
108110
"load-plugin": "^6.0.3",
109111
"lodash": "^4.17.23",
110112
"lusca": "^1.7.0",
113+
"material-design-icons": "^3.0.1",
111114
"moment": "^2.30.1",
112115
"mongodb": "^5.9.2",
113116
"openid-client": "^6.8.1",
@@ -172,8 +175,8 @@
172175
"typescript": "^5.9.3",
173176
"typescript-eslint": "^8.54.0",
174177
"vite": "^7.3.1",
175-
"vitest": "^3.2.4",
176-
"vite-tsconfig-paths": "^5.1.4"
178+
"vite-tsconfig-paths": "^5.1.4",
179+
"vitest": "^3.2.4"
177180
},
178181
"optionalDependencies": {
179182
"@esbuild/darwin-arm64": "^0.27.2",

src/index.tsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
import React from 'react';
22
import ReactDOM from 'react-dom';
33
import { BrowserRouter as Router, Route, Routes, Navigate } from 'react-router-dom';
4+
5+
// Styles
6+
import 'font-awesome/css/font-awesome.min.css';
7+
import '@fontsource/roboto/300.css';
8+
import '@fontsource/roboto/400.css';
9+
import '@fontsource/roboto/500.css';
10+
import '@fontsource/roboto/700.css';
11+
import 'material-design-icons/iconfont/material-icons.css';
12+
import 'diff2html/bundles/css/diff2html.min.css';
13+
14+
// Auth provider
415
import { AuthProvider } from './ui/auth/AuthProvider';
516

6-
// core components
17+
// Core components
718
import Dashboard from './ui/layouts/Dashboard';
819
import Login from './ui/views/Login/Login';
920
import './ui/assets/css/material-dashboard-react.css';

0 commit comments

Comments
 (0)