Skip to content

Commit 8cc57bb

Browse files
Divyendu Singhtimsuchanek
authored andcommitted
run ./scripts/release-react.sh, robust jq test and bump electron (#822)
1 parent 85c203f commit 8cc57bb

File tree

9 files changed

+21
-11
lines changed

9 files changed

+21
-11
lines changed

packages/graphql-playground-electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"homepage": "https://github.com/graphcool/graphql-playground",
55
"repository": "graphcool/graphql-playground",
66
"description": "GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive docs & collaboration)",
7-
"version": "1.6.2",
7+
"version": "1.6.3",
88
"author": {
99
"name": "Graphcool",
1010
"email": "[email protected]",

packages/graphql-playground-middleware-express/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-playground-middleware-express",
3-
"version": "1.7.2",
3+
"version": "1.7.3",
44
"homepage": "https://github.com/graphcool/graphql-playground/tree/master/packages/graphql-playground-middleware-express",
55
"description": "GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive docs & collaboration).",
66
"contributors": [
@@ -14,7 +14,7 @@
1414
"files": [
1515
"dist"
1616
],
17-
"playgroundVersion": "1.7.2",
17+
"playgroundVersion": "1.7.4",
1818
"scripts": {
1919
"build": "rimraf dist && tsc",
2020
"prepare": "npm run build"

packages/graphql-playground-middleware-hapi/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/graphql-playground-middleware-hapi/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-playground-middleware-hapi",
3-
"version": "1.7.2",
3+
"version": "1.7.3",
44
"homepage": "https://github.com/graphcool/graphql-playground/tree/master/packages/graphql-playground-middleware-hapi",
55
"description": "GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive docs & collaboration).",
66
"contributors": [
@@ -15,7 +15,7 @@
1515
"files": [
1616
"dist"
1717
],
18-
"playgroundVersion": "1.7.2",
18+
"playgroundVersion": "1.7.4",
1919
"scripts": {
2020
"build": "rimraf dist && tsc",
2121
"prepare": "npm run build"

packages/graphql-playground-middleware-koa/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-playground-middleware-koa",
3-
"version": "1.6.3",
3+
"version": "1.6.4",
44
"homepage": "https://github.com/graphcool/graphql-playground/tree/master/packages/graphql-playground-middleware-koa",
55
"description": "GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive docs & collaboration).",
66
"contributors": [
@@ -14,7 +14,7 @@
1414
"files": [
1515
"dist"
1616
],
17-
"playgroundVersion": "1.7.2",
17+
"playgroundVersion": "1.7.4",
1818
"scripts": {
1919
"build": "rimraf dist && tsc",
2020
"prepare": "npm run build"

packages/graphql-playground-middleware-lambda/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-playground-middleware-lambda",
3-
"version": "1.7.2",
3+
"version": "1.7.3",
44
"homepage": "https://github.com/graphcool/graphql-playground/tree/master/packages/graphql-playground-middleware-lambada",
55
"description": "GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive docs & collaboration).",
66
"contributors": [
@@ -14,7 +14,7 @@
1414
"files": [
1515
"dist"
1616
],
17-
"playgroundVersion": "1.7.2",
17+
"playgroundVersion": "1.7.4",
1818
"scripts": {
1919
"build": "rimraf dist && tsc",
2020
"prepare": "npm run build"

packages/graphql-playground-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-playground-react",
3-
"version": "1.7.2",
3+
"version": "1.7.4",
44
"main": "./lib/lib.js",
55
"typings": "./lib/lib.d.ts",
66
"description": "GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive docs & collaboration).",

scripts/release-html.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#!/bin/bash
22

3+
if ! [ -x "$(command -v jq)" ]; then
4+
echo 'Error: jq is not installed.' >&2
5+
exit 1
6+
fi
7+
38
set -e
49

510
cd packages

scripts/release-react.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#!/bin/bash
22

3+
if ! [ -x "$(command -v jq)" ]; then
4+
echo 'Error: jq is not installed.' >&2
5+
exit 1
6+
fi
7+
38
set -e
49

510
cd packages

0 commit comments

Comments
 (0)