aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-11-10 18:13:31 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-11-10 18:13:31 +0530
commitbe49a2626a471d33ac0803eb2b5afa1807e2e23e (patch)
treea4df2f05b9b060fb878519a1b18eb73e7963316b /scripts
parentRefactor mandatory files needed in each recipe (diff)
downloadferdium-recipes-be49a2626a471d33ac0803eb2b5afa1807e2e23e.tar.gz
ferdium-recipes-be49a2626a471d33ac0803eb2b5afa1807e2e23e.tar.zst
ferdium-recipes-be49a2626a471d33ac0803eb2b5afa1807e2e23e.zip
Added 'webview.js' as a mandatory file and fixed broken recipes
Diffstat (limited to 'scripts')
-rw-r--r--scripts/package.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/package.js b/scripts/package.js
index c07f893..e1e3d5c 100644
--- a/scripts/package.js
+++ b/scripts/package.js
@@ -65,7 +65,7 @@ const compress = (src, dest) =>
65 65
66 for (let recipe of availableRecipes) { 66 for (let recipe of availableRecipes) {
67 const recipeSrc = path.join(recipesFolder, recipe); 67 const recipeSrc = path.join(recipesFolder, recipe);
68 const mandatoryFiles = ['package.json', 'icon.svg']; 68 const mandatoryFiles = ['package.json', 'icon.svg', 'webview.js'];
69 69
70 // Check that each mandatory file exists 70 // Check that each mandatory file exists
71 for (let file of mandatoryFiles) { 71 for (let file of mandatoryFiles) {