From d77a5da3dd50c610c5d7672ae823232ad7b56c71 Mon Sep 17 00:00:00 2001 From: Yoga Setiawan Date: Thu, 8 Oct 2020 01:01:25 +0700 Subject: Added recipe for Pinterest (#316) --- recipes/pinterest/LICENSE | 21 +++++++++++++++++++++ recipes/pinterest/icon.png | Bin 0 -> 22532 bytes recipes/pinterest/icon.svg | 1 + recipes/pinterest/index.js | 2 ++ recipes/pinterest/package.json | 12 ++++++++++++ recipes/pinterest/webview.js | 4 ++++ 6 files changed, 40 insertions(+) create mode 100644 recipes/pinterest/LICENSE create mode 100644 recipes/pinterest/icon.png create mode 100644 recipes/pinterest/icon.svg create mode 100644 recipes/pinterest/index.js create mode 100644 recipes/pinterest/package.json create mode 100644 recipes/pinterest/webview.js (limited to 'recipes') diff --git a/recipes/pinterest/LICENSE b/recipes/pinterest/LICENSE new file mode 100644 index 0000000..088c4dc --- /dev/null +++ b/recipes/pinterest/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Yoga Setiawan + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/recipes/pinterest/icon.png b/recipes/pinterest/icon.png new file mode 100644 index 0000000..e4ed7d1 Binary files /dev/null and b/recipes/pinterest/icon.png differ diff --git a/recipes/pinterest/icon.svg b/recipes/pinterest/icon.svg new file mode 100644 index 0000000..37054bf --- /dev/null +++ b/recipes/pinterest/icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/recipes/pinterest/index.js b/recipes/pinterest/index.js new file mode 100644 index 0000000..f48f249 --- /dev/null +++ b/recipes/pinterest/index.js @@ -0,0 +1,2 @@ +module.exports = Ferdi => class pinterest extends Ferdi { +}; diff --git a/recipes/pinterest/package.json b/recipes/pinterest/package.json new file mode 100644 index 0000000..e76645a --- /dev/null +++ b/recipes/pinterest/package.json @@ -0,0 +1,12 @@ +{ + "id": "pinterest", + "name": "Pinterest", + "version": "1.0.0", + "description": "figma", + "main": "index.js", + "author": "Ferdi ", + "license": "MIT", + "config": { + "serviceURL": "https://pinterest.com" + } +} diff --git a/recipes/pinterest/webview.js b/recipes/pinterest/webview.js new file mode 100644 index 0000000..7b5fee0 --- /dev/null +++ b/recipes/pinterest/webview.js @@ -0,0 +1,4 @@ +"use strict"; + +module.exports = Ferdi => { +}; -- cgit v1.2.3-54-g00ecf