Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/AnYiEE/AwesomeGadgets
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 19, 2023
2 parents 45c792d + 2a84094 commit b96b2a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "awesome-gadgets",
"version": "2.18.0",
"version": "2.18.1",
"description": "Storage, management, compilation, and automatic deployment of MediaWiki gadgets.",
"private": true,
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion scripts/modules/utils/deploy-util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ const deleteUnusedPages = async ({api, editSummary, queue}: ApiQueue): Promise<v
} catch {}

const fileDescriptor: PathOrFileDescriptor = fs.openSync(storeFilePath, 'w');
fs.writeFileSync(fileDescriptor, deployPages.join('\n'));
fs.writeFileSync(fileDescriptor, deployPages.sort().join('\n'));
fs.fdatasyncSync(fileDescriptor);
fs.closeSync(fileDescriptor);

Expand Down

0 comments on commit b96b2a8

Please sign in to comment.