-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
winget-source: sync metadata using V2 index (#120)
* winget-source: sync metadata required by V2 index * winget-source: extract common logic of syncing * update * add success log * winget-source: trim trailing spaces * winget-source: fix unexpected `undefined` in sync * winget-source: bump package version
- Loading branch information
Showing
4 changed files
with
195 additions
and
80 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@ustcmirror/winget-source", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"description": "Sync with pre-indexed WinGet source repository.", | ||
"main": "sync-repo.js", | ||
"author": "YR Chen <[email protected]>", | ||
|
@@ -13,7 +13,8 @@ | |
"node-fetch": "^3.3.1", | ||
"promised-sqlite3": "^2.1.0", | ||
"sqlite3": "^5.1.5", | ||
"winston": "^3.8.2" | ||
"winston": "^3.8.2", | ||
"yaml": "^2.4.5" | ||
}, | ||
"scripts": { | ||
"start": "node sync-repo.js" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.