aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/create.js
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-07-05 08:42:26 +0530
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-07-06 04:37:03 +0530
commit23041adee9590064c455e5d4a511fc89b5d80546 (patch)
tree735e7550592687ae7be35604d1cd0fa7c862ec37 /scripts/create.js
parentAllowed the user to edit the service url for gCalendar (fixes #1514) (diff)
downloadferdium-recipes-23041adee9590064c455e5d4a511fc89b5d80546.tar.gz
ferdium-recipes-23041adee9590064c455e5d4a511fc89b5d80546.tar.zst
ferdium-recipes-23041adee9590064c455e5d4a511fc89b5d80546.zip
Removed references to png images since they were not being used anyways.
Diffstat (limited to 'scripts/create.js')
-rw-r--r--scripts/create.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/create.js b/scripts/create.js
index 12b0c15..b41d6d0 100644
--- a/scripts/create.js
+++ b/scripts/create.js
@@ -41,7 +41,7 @@ const filesThatNeedTextReplace = ['package.json', 'index.js', 'README.md'];
41 if (await fs.exists(newRecipeFolder)) { 41 if (await fs.exists(newRecipeFolder)) {
42 console.log('⚠️ Recipe already exists'); 42 console.log('⚠️ Recipe already exists');
43 return; 43 return;
44 } 44 }
45 45
46 console.log('[Info] Passed pre-checks'); 46 console.log('[Info] Passed pre-checks');
47 47
@@ -62,9 +62,9 @@ const filesThatNeedTextReplace = ['package.json', 'index.js', 'README.md'];
62 62
63 open(newRecipeFolder); 63 open(newRecipeFolder);
64 console.log(`✅ Successfully created your recipe. 64 console.log(`✅ Successfully created your recipe.
65 65
66What's next? 66What's next?
67- Make sure you restart Ferdi in order for the recipe to show up 67- Make sure you restart Ferdi in order for the recipe to show up
68- Customise "webview.js", "package.json", "icon.svg" and "icon.png (see https://github.com/getferdi/recipes/blob/master/docs/integration.md#recipe-structure) 68- Customise "webview.js", "package.json" and "icon.svg" (see https://github.com/getferdi/recipes/blob/master/docs/integration.md#recipe-structure)
69- Publish your recipe (see https://github.com/getferdi/recipes/blob/master/docs/integration.md#publishing)`); 69- Publish your recipe (see https://github.com/getferdi/recipes/blob/master/docs/integration.md#publishing)`);
70})(); 70})();