Skip to content

Commit 6e7bb0f

Browse files
committed
include .json files, update husky to work in nested folder
1 parent b04a2f3 commit 6e7bb0f

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,3 +174,4 @@ cython_debug/
174174
# Project specific files
175175
*.json
176176
*.yaml
177+
!ui/**/*.json

ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"start": "next start",
88
"lint": "next lint",
99
"format": "prettier --ignore-path .prettierignore --write \"**/*.+(js|ts|jsx|tsx|json)\"",
10-
"prepare": "husky install",
10+
"prepare": "cd .. && husky ui/.husky",
1111
"test": "jest --passWithNoTests",
1212
"test:unit": "jest --passWithNoTests tests/unit",
1313
"test:integration": "jest --passWithNoTests tests/integration"

ui/public/manifest.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"short_name": "guidellm-ui",
3+
"name": "guidellm-ui",
4+
"icons": [
5+
{
6+
"src": "favicon.ico",
7+
"sizes": "64x64 32x32 24x24 16x16",
8+
"type": "image/x-icon"
9+
},
10+
{
11+
"src": "favicon-192x192.png",
12+
"type": "image/png",
13+
"sizes": "192x192"
14+
},
15+
{
16+
"src": "favicon-512x512.png",
17+
"type": "image/png",
18+
"sizes": "512x512"
19+
}
20+
],
21+
"start_url": ".",
22+
"display": "standalone",
23+
"theme_color": "#000000",
24+
"background_color": "#ffffff"
25+
}

0 commit comments

Comments
 (0)