-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(test): add script update-all-data.mjs (#449)
This script is a little bit easier to run and doesn't rely on the user having `curl` installed. It also updates files based on the `data-` prefix so it will be easier to keep in sync when adding more. --------- Co-authored-by: Nathan Rajlich <[email protected]>
- Loading branch information
1 parent
e7f8984
commit 2471f2f
Showing
2 changed files
with
14 additions
and
6 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { readdir, writeFile } from 'fs/promises'; | ||
|
||
const dir = new URL('./', import.meta.url); | ||
const files = await readdir(dir); | ||
|
||
for (const file of files.filter(f => f.startsWith('data-'))) { | ||
const url = `https://raw.githubusercontent.com/kangax/compat-table/gh-pages/${file}`; | ||
const res = await fetch(url); | ||
const text = await res.text(); | ||
await writeFile(new URL(file, dir), text); | ||
} | ||
|
||
console.log('Update complete!') |