From 9db43e100a672b6d6932ac68c0fbe503c129138b Mon Sep 17 00:00:00 2001 From: Vijay Aravamudhan Date: Sun, 12 Sep 2021 22:01:51 +0530 Subject: Added a check to verify that the folder name of the recipe matches the recipe id (#708) Use the recipe-id as master to rename internal folder names --- recipes/google-contacts/icon.svg | 1 + recipes/google-contacts/index.js | 1 + recipes/google-contacts/package.json | 9 +++++++++ recipes/google-contacts/webview.js | 0 4 files changed, 11 insertions(+) create mode 100644 recipes/google-contacts/icon.svg create mode 100644 recipes/google-contacts/index.js create mode 100644 recipes/google-contacts/package.json create mode 100644 recipes/google-contacts/webview.js (limited to 'recipes/google-contacts') diff --git a/recipes/google-contacts/icon.svg b/recipes/google-contacts/icon.svg new file mode 100644 index 0000000..e5bf72a --- /dev/null +++ b/recipes/google-contacts/icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/recipes/google-contacts/index.js b/recipes/google-contacts/index.js new file mode 100644 index 0000000..23607bd --- /dev/null +++ b/recipes/google-contacts/index.js @@ -0,0 +1 @@ +module.exports = Ferdi => Ferdi; diff --git a/recipes/google-contacts/package.json b/recipes/google-contacts/package.json new file mode 100644 index 0000000..4f91692 --- /dev/null +++ b/recipes/google-contacts/package.json @@ -0,0 +1,9 @@ +{ + "id": "google-contacts", + "name": "Google Contacts", + "version": "1.1.0", + "license": "MIT", + "config": { + "serviceURL": "https://contacts.google.com/" + } +} diff --git a/recipes/google-contacts/webview.js b/recipes/google-contacts/webview.js new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3-54-g00ecf