@@ -11,7 +11,7 @@ export const PACKAGES: PackageData[] = [
1111 {
1212 text : "prozilla-os" ,
1313 link : "prozilla-os" ,
14- category : "Bundle"
14+ category : "Bundle" ,
1515 } ,
1616 {
1717 text : "@prozilla-os/core" ,
@@ -29,7 +29,7 @@ export const PACKAGES: PackageData[] = [
2929 collapsed : true ,
3030 items : [
3131 { text : "App" , link : "/app" } ,
32- ]
32+ ] ,
3333 } ,
3434 {
3535 text : "System" ,
@@ -42,8 +42,9 @@ export const PACKAGES: PackageData[] = [
4242 { text : "ModalsConfig" , link : "/modals-config" } ,
4343 { text : "TaskbarConfig" , link : "/taskbar-config" } ,
4444 { text : "TrackingConfig" , link : "/tracking-config" } ,
45+ { text : "VirtualDriveConfig" , link : "/virtual-drive-config" } ,
4546 { text : "WindowsConfig" , link : "/windows-config" } ,
46- ]
47+ ] ,
4748 } ,
4849 {
4950 text : "Utils" ,
@@ -52,9 +53,9 @@ export const PACKAGES: PackageData[] = [
5253 items : [
5354 { text : "TimeManager" , link : "/time-manager" } ,
5455 { text : "Vector2" , link : "/vector2" } ,
55- ]
56+ ] ,
5657 } ,
57- ]
58+ ] ,
5859 } ,
5960 {
6061 text : "Functions" ,
@@ -64,13 +65,13 @@ export const PACKAGES: PackageData[] = [
6465 { text : "Browser" , link : "/browser" } ,
6566 { text : "Keyboard" , link : "/keyboard" } ,
6667
67- ]
68+ ] ,
6869 } ,
6970 {
7071 text : "Constants" ,
71- link : "/constants"
72+ link : "/constants" ,
7273 } ,
73- ]
74+ ] ,
7475 } ,
7576 {
7677 text : "@prozilla-os/skins" ,
@@ -82,10 +83,10 @@ export const PACKAGES: PackageData[] = [
8283 base : "/reference/skins/classes" ,
8384 collapsed : false ,
8485 items : [
85- { text : "Skin" , link : "/skin" }
86- ]
87- }
88- ]
86+ { text : "Skin" , link : "/skin" } ,
87+ ] ,
88+ } ,
89+ ] ,
8990 } ,
9091 {
9192 text : "@prozilla-os/shared" ,
@@ -98,15 +99,15 @@ export const PACKAGES: PackageData[] = [
9899 collapsed : false ,
99100 items : [
100101 { text : "EventEmitter" , link : "/event-emitter" } ,
101- ]
102+ ] ,
102103 } ,
103104 {
104105 text : "Constants" ,
105106 base : "/reference/shared/constants" ,
106107 collapsed : false ,
107108 items : [
108109 { text : "ANSI" , link : "/ansi" } ,
109- ]
110+ ] ,
110111 } ,
111112 {
112113 text : "Functions" ,
@@ -117,9 +118,9 @@ export const PACKAGES: PackageData[] = [
117118 { text : "Date" , link : "/date" } ,
118119 { text : "Math" , link : "/math" } ,
119120 { text : "Number" , link : "/number" } ,
120- ]
121- }
122- ]
121+ ] ,
122+ } ,
123+ ] ,
123124 } ,
124125 {
125126 text : "@prozilla-os/dev-tools" ,
@@ -133,9 +134,9 @@ export const PACKAGES: PackageData[] = [
133134 items : [
134135 { text : "Console" , link : "/console" } ,
135136 { text : "Vite" , link : "/vite" } ,
136- ]
137- }
138- ]
137+ ] ,
138+ } ,
139+ ] ,
139140 } ,
140141 {
141142 text : "@prozilla-os/calculator" ,
@@ -171,7 +172,7 @@ export const PACKAGES: PackageData[] = [
171172 text : "@prozilla-os/logic-sim" ,
172173 link : "apps/logic-sim" ,
173174 category : "Apps" ,
174- }
175+ } ,
175176] ;
176177
177178export const packageSidebars = ( packages : PackageData [ ] ) : DefaultTheme . Sidebar => {
@@ -186,10 +187,10 @@ export const packageSidebars = (packages: PackageData[]): DefaultTheme.Sidebar =
186187 text,
187188 items : [
188189 { text : "Info" , link : "/" } ,
189- ...items
190- ]
191- }
192- ]
190+ ...items ,
191+ ] ,
192+ } ,
193+ ] ,
193194 } ;
194195 } ) ;
195196
@@ -204,13 +205,13 @@ export const packageReferenceItems = (packages: PackageData[]): DefaultTheme.Sid
204205 categories [ category ] = {
205206 text : category ,
206207 collapsed : true ,
207- items : [ ]
208+ items : [ ] ,
208209 } ;
209210 }
210211
211212 categories [ category ] . items ?. push ( {
212213 text,
213- link : "/" + link
214+ link : "/" + link ,
214215 } ) ;
215216 } ) ;
216217
0 commit comments