aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/create.js
diff options
context:
space:
mode:
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})();