mirror of
https://github.com/Drop-OSS/droplet.git
synced 2026-01-30 20:55:18 +01:00
8 lines
255 B
JavaScript
8 lines
255 B
JavaScript
const droplet = require('.');
|
|
const fs = require('fs');
|
|
|
|
(async () => {
|
|
const manifest = await droplet.generateManifest("/home/decduck/Games/STAR WARS Jedi Survivor", console.log, console.log);
|
|
fs.writeFileSync('./manifest.json', manifest);
|
|
})();
|