aboutsummaryrefslogtreecommitdiff
path: root/scripts/stats
diff options
context:
space:
mode:
authorGravatar FredKSchott <FredKSchott@users.noreply.github.com> 2021-11-12 00:01:05 +0000
committerGravatar GitHub Actions <actions@github.com> 2021-11-12 00:01:05 +0000
commitdf881f5a1719d8231624044f0088bcf26e172837 (patch)
treecdf7aecf549e9f9705e17e4f5ad895c2dec65c06 /scripts/stats
parent2f46e87fe38cbe35d7203d65956dd9e6707b97f9 (diff)
downloadastro-df881f5a1719d8231624044f0088bcf26e172837.tar.gz
astro-df881f5a1719d8231624044f0088bcf26e172837.tar.zst
astro-df881f5a1719d8231624044f0088bcf26e172837.zip
[ci] yarn format
Diffstat (limited to 'scripts/stats')
-rw-r--r--scripts/stats/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/stats/index.js b/scripts/stats/index.js
index 42a58486d..2b81f7a8f 100644
--- a/scripts/stats/index.js
+++ b/scripts/stats/index.js
@@ -112,7 +112,7 @@ export async function run() {
`"${new Date().toISOString()}"`,
].join(',');
- const statCsv = readFileSync('scripts/stats/stats.csv', {encoding: 'utf-8'});
+ const statCsv = readFileSync('scripts/stats/stats.csv', { encoding: 'utf-8' });
const [statHeader, ...statItems] = statCsv.split('\n');
const updatedStatCsv = [statHeader, entry, ...statItems].join('\n');
writeFileSync('scripts/stats/stats.csv', updatedStatCsv);