repos / neovimcraft

website that makes it easy to find neovim plugins
git clone https://github.com/neurosnap/neovimcraft.git

commit
6d6b1d5
parent
db4defd
author
Eric Bower
date
2021-10-25 03:25:45 +0000 UTC
add extra debug statement when fetching data
1 files changed,  +3, -0
M scripts/process.ts
+3, -0
 1@@ -179,6 +179,9 @@ async function fetchGithubData(props: Props): Promise<Resp<any>> {
 2 async function processResources(resources: Resource[]) {
 3   const plugins: { [key: string]: Plugin } = {};
 4   const markdown: { [key: string]: string } = {};
 5+
 6+  console.log(`Fetching ${resources.length} resources`);
 7+
 8   for (let i = 0; i < resources.length; i += 1) {
 9     const d = resources[i];
10