mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-09 16:52:14 +01:00
b310152f7f
- also fix TS warnings in invidiousCI.ts
6 lines
No EOL
252 B
TypeScript
6 lines
No EOL
252 B
TypeScript
import { writeFile } from 'fs';
|
|
|
|
import * as license from "../oss-attribution/licenseInfos.json";
|
|
|
|
const result = JSON.stringify(license, null, 2);
|
|
writeFile("../oss-attribution/licenseInfos.json", result, err => { if (err) return console.log(err) } ); |