From 2a794bc3fbded92ade644952811f2032d5ccd043 Mon Sep 17 00:00:00 2001 From: Michal Juras Date: Mon, 28 Feb 2022 11:03:39 +0000 Subject: [PATCH 1/7] Add .npmignore to remove gif from the package. --- .npmignore | 1 + README.md | 2 +- demo.gif => static/demo.gif | Bin 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .npmignore rename demo.gif => static/demo.gif (100%) diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..e4da743 --- /dev/null +++ b/.npmignore @@ -0,0 +1 @@ +./static diff --git a/README.md b/README.md index 2492d41..d188475 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ With this plugin, you can improve testing of your code 💯, reduce time by crea **Disclaimer**: this is a beta-release of the Amplify GraphQL Seed Plugin and may contain unforeseen bugs. This is a 3rd-party plugin and is not associated with the official Amplify project. Use this plugin at your own discretion. Please let us know if you encounter any bugs, or have feedback / suggestions. -![Demo-gif](./demo.gif) +![Demo-gif](./static/demo.gif) **Contents:** - [Installation 🛠️](#installation) diff --git a/demo.gif b/static/demo.gif similarity index 100% rename from demo.gif rename to static/demo.gif From 3cd0ebb4b8f24178fbb0a055d0ad89298ba4e921 Mon Sep 17 00:00:00 2001 From: Michal Juras Date: Mon, 28 Feb 2022 11:05:42 +0000 Subject: [PATCH 2/7] Fix package.json description --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 25b33b1..62a3c8b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "graphql-seed", "version": "0.1.0", - "description": "Package for local and remote seeding of GraphQL APIs.", + "description": "AWS Amplify plugin for local and remote seeding of GraphQL API.", "author": "Michal Juras and Laurens Brinker, Amazon Web Services", "engines": { "node" : ">=14.0.0" From faa63e5b7c42c92c7d41964f2e9a7aab00aafea9 Mon Sep 17 00:00:00 2001 From: Michal Juras Date: Mon, 28 Feb 2022 11:12:43 +0000 Subject: [PATCH 3/7] Fix node engine version in package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 62a3c8b..8fbb077 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "AWS Amplify plugin for local and remote seeding of GraphQL API.", "author": "Michal Juras and Laurens Brinker, Amazon Web Services", "engines": { - "node" : ">=14.0.0" + "node": ">=14.0.0" }, "main": "index.js", "license": "Apache-2.0", From c2201fcaff632ead5f9bb6937b5399bdd0ff6185 Mon Sep 17 00:00:00 2001 From: Michal Juras Date: Mon, 28 Feb 2022 11:28:12 +0000 Subject: [PATCH 4/7] Change the package name for npm release. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8fbb077..d20b3fa 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "graphql-seed", + "name": "amplify-graphql-seed-plugin", "version": "0.1.0", "description": "AWS Amplify plugin for local and remote seeding of GraphQL API.", "author": "Michal Juras and Laurens Brinker, Amazon Web Services", From ff366802ad6bb91e9ef1f41c558cbeddd2f30e30 Mon Sep 17 00:00:00 2001 From: Michal Juras Date: Mon, 28 Feb 2022 12:04:05 +0000 Subject: [PATCH 5/7] Remove npmignore file. --- .npmignore | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .npmignore diff --git a/.npmignore b/.npmignore deleted file mode 100644 index e4da743..0000000 --- a/.npmignore +++ /dev/null @@ -1 +0,0 @@ -./static From 3a92dbc9dd25c6e895b6f3df15248bd07ba78c07 Mon Sep 17 00:00:00 2001 From: Michal Juras Date: Mon, 28 Feb 2022 12:05:10 +0000 Subject: [PATCH 6/7] Bump to 0.1.1 for the new package --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d20b3fa..c40084e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "amplify-graphql-seed-plugin", - "version": "0.1.0", + "version": "0.1.1", "description": "AWS Amplify plugin for local and remote seeding of GraphQL API.", "author": "Michal Juras and Laurens Brinker, Amazon Web Services", "engines": { From 9b7980ade0df127d10eca7628ce729c4fd4ba7b3 Mon Sep 17 00:00:00 2001 From: Michal Juras Date: Mon, 28 Feb 2022 12:06:49 +0000 Subject: [PATCH 7/7] Revert "Remove npmignore file." This reverts commit ff366802ad6bb91e9ef1f41c558cbeddd2f30e30. --- .npmignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..e4da743 --- /dev/null +++ b/.npmignore @@ -0,0 +1 @@ +./static