Skip to content

Commit 1b51013

Browse files
committed
Cleanups.
1 parent fef1fdf commit 1b51013

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ To rebuild the project (minimizing the JS), run the following commands:
4646

4747
```javascript
4848
npm install
49-
npm run mini
49+
npm run build
5050
```
5151

5252
## License

js/queries.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,11 @@ const getFans = (repo) => {
396396
}
397397

398398
if (runningQueries) {
399-
setStatus(`Waiting on ${runningQueries} of ${totalQueries} queries...`);
399+
setStatus(
400+
`${totalQueries} queries: ${
401+
totalQueries - runningQueries
402+
} done + ${runningQueries} pending...`
403+
);
400404
} else {
401405
document.getElementById("fans").value = toJSON(fans);
402406
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"url": "https://github.com/sponsors/evoluteur"
1515
},
1616
"scripts": {
17-
"mini": "uglifyjs js/data.js js/graph.js js/views.js --compress --mangle --warn --output dist/meet-the-fans.min.js"
17+
"build": "uglifyjs js/data.js js/graph.js js/views.js --compress --mangle --warn --output dist/meet-the-fans.min.js"
1818
},
1919
"devDependencies": {
2020
"uglify-js": "^3.3.11"

0 commit comments

Comments
 (0)