mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 17:30:59 +01:00
60806f74b9
* Push * Remove `rootDir` * Use tsconfig instead of jsconfig * Push recent changes * Better dark mode * empty commit to try and trigger a deploy * bump kit * Fix site-kit dep * Comment out blurb * Update site-kit to 3.2.1 * Externalise sourcemap-codec * Install sourcemap-codec as dep --------- Co-authored-by: Rich Harris <hello@rich-harris.dev>
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')
|
|
]);
|