From 377b79d961097930eb712bc9ac2b250f0b8d925d Mon Sep 17 00:00:00 2001 From: Robert Hall Date: Fri, 18 Jun 2021 12:02:09 -0600 Subject: [PATCH] no longer needed --- site/scripts/update_whos_using.js | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 site/scripts/update_whos_using.js diff --git a/site/scripts/update_whos_using.js b/site/scripts/update_whos_using.js deleted file mode 100644 index 36bc3bdc53..0000000000 --- a/site/scripts/update_whos_using.js +++ /dev/null @@ -1,13 +0,0 @@ -const sh = require('shelljs'); - -sh.cd(__dirname + '/../'); - -// fetch community repo -sh.rm('-rf','scripts/community'); -sh.exec('npx degit sveltejs/community scripts/community'); - -// copy over relevant files -sh.cp('scripts/community/whos-using-svelte/WhosUsingSvelte.svelte', 'src/routes/_components/WhosUsingSvelte.svelte'); -sh.cp('scripts/community/whos-using-svelte/WhosUsingSvelte.js', 'src/routes/_components/WhosUsingSvelte.js'); -sh.rm('-rf', 'static/organisations'); -sh.cp('-r', 'scripts/community/whos-using-svelte/organisations', 'static');