mirror of
https://github.com/mue/mue.git
synced 2026-07-25 17:51:14 +02:00
fix: author loading before quote
- Make author div not load if quote is empty - photoinformation taking too much of the screen - more transitions and consistent transitions - running prettier across all files Co-authored-by: David Ralph <me@davidcralph.co.uk>
This commit is contained in:
@@ -7,7 +7,10 @@ fs.readdirSync('../src/translations').forEach((file) => {
|
||||
return;
|
||||
}
|
||||
|
||||
const newdata = merge(require('../src/translations/en_GB.json'), require('../src/translations/' + file));
|
||||
const newdata = merge(
|
||||
require('../src/translations/en_GB.json'),
|
||||
require('../src/translations/' + file),
|
||||
);
|
||||
fs.writeFileSync('../src/translations/' + file, JSON.stringify(newdata, null, 2));
|
||||
// add new line
|
||||
fs.appendFileSync('../src/translations/' + file, '\n');
|
||||
|
||||
Reference in New Issue
Block a user