From 9c31d148feff0c40b6d3407d85b4c4872e0832f3 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Mon, 28 Jun 2021 09:31:22 -0400 Subject: [PATCH] fix argument --- scripts/make-vscode-data.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/make-vscode-data.js b/scripts/make-vscode-data.js index d1fb615b6..cab3c8a91 100644 --- a/scripts/make-vscode-data.js +++ b/scripts/make-vscode-data.js @@ -9,7 +9,7 @@ import mkdirp from 'mkdirp'; const metadata = JSON.parse(fs.readFileSync('./dist/custom-elements.json', 'utf8')); -function getAllComponents(metadata) { +function getAllComponents() { const allComponents = []; metadata.modules.map(module => { @@ -29,7 +29,7 @@ function getAllComponents(metadata) { return allComponents; } -console.log('Generating IntelliSense data for VS Code'); +console.log('Generating custom data for VS Code'); const components = getAllComponents(); const vscode = { tags: [] };