mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 17:30:59 +01:00
10 lines
246 B
JavaScript
10 lines
246 B
JavaScript
|
import sh from 'shelljs';
|
||
|
|
||
|
sh.env['FORCE_UPDATE'] = process.argv.includes('--force=true');
|
||
|
|
||
|
Promise.all([
|
||
|
sh.exec('node ./scripts/get_contributors.js'),
|
||
|
sh.exec('node ./scripts/get_donors.js'),
|
||
|
sh.exec('node ./scripts/update_template.js')
|
||
|
]);
|