File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -74,15 +74,15 @@ jobs:
7474 script : |
7575 // Import the packages generation module
7676 const { generatePackagesJson, writePackagesJson } = require('./.github/scripts/generate-packages.js');
77-
77+
7878 console.log('Generating packages.json from dist directory...');
79-
79+
8080 // Change to dist directory
8181 process.chdir('./dist');
82-
82+
8383 // Generate the packages data
8484 const packagesData = generatePackagesJson('.');
85-
85+
8686 // Write the packages.json file
8787 writePackagesJson(packagesData, './packages.json');
8888
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ class UIManager {
103103 */
104104 renderRepositories ( repos ) {
105105 if ( repos . length === 0 ) {
106- this . repositoryGrid . innerHTML = '<div class="col-12 text-center text-muted fst-italic py-5">No repositories found.</div>' ;
106+ this . repositoryGrid . innerHTML = '<div class="col-12 text-center fst-italic py-5">No repositories found.</div>' ;
107107 return ;
108108 }
109109
@@ -148,7 +148,7 @@ class UIManager {
148148 * Show loading state
149149 */
150150 showLoading ( ) {
151- this . repositoryGrid . innerHTML = '<div class="col-12 text-center text-muted fst-italic py-5">Loading repository data...</div>' ;
151+ this . repositoryGrid . innerHTML = '<div class="col-12 text-center fst-italic py-5">Loading repository data...</div>' ;
152152 this . repoCountElement . textContent = '-' ;
153153 this . releaseCountElement . textContent = '-' ;
154154 this . assetCountElement . textContent = '-' ;
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ <h5 class="card-title text-primary" id="assetCount">-</h5>
5353
5454 < div class ="row justify-content-center mt-5 ">
5555 < div class ="col-auto ">
56- < div class ="border-top pt-3 text-muted small text-center ">
56+ < div class ="border-top pt-3 small text-center ">
5757 Last updated: < span id ="updateTime "> -</ span >
5858 </ div >
5959 </ div >
You can’t perform that action at this time.
0 commit comments