diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-06-23 17:44:40 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-23 07:44:40 -0700 |
commit | c634cd9071305239f8c7d6acf371aca397f2bf2b (patch) | |
tree | 6df1efe8fc7d01b2bca9d325c4971a03534e361e /scripts | |
parent | 3c92714e4e898ffabd714092f4d9c88eddf8429c (diff) | |
download | voidsky-c634cd9071305239f8c7d6acf371aca397f2bf2b.tar.zst |
Upgrade prettier to 3.6 (#8558)
* upgrade prettier * run prettier * more files
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/post-web-build.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/scripts/post-web-build.js b/scripts/post-web-build.js index 3b1b62dfd..5b7b07c0d 100644 --- a/scripts/post-web-build.js +++ b/scripts/post-web-build.js @@ -9,10 +9,9 @@ const templateFile = path.join( 'scripts.html', ) -const {entrypoints} = require(path.join( - projectRoot, - 'web-build/asset-manifest.json', -)) +const {entrypoints} = require( + path.join(projectRoot, 'web-build/asset-manifest.json'), +) console.log(`Found ${entrypoints.length} entrypoints`) console.log(`Writing ${templateFile}`) |