Skip to content

Commit 0ebd6d5

Browse files
committed
v1.3.2
1 parent a43266e commit 0ebd6d5

File tree

6 files changed

+24
-34
lines changed

6 files changed

+24
-34
lines changed

packages/graphql-playground-middleware-express/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-middleware-express",
3-
"version": "1.3.1",
3+
"version": "1.3.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": [

packages/graphql-playground-middleware-hapi/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-middleware-hapi",
3-
"version": "1.3.1",
3+
"version": "1.3.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": [

packages/graphql-playground-middleware-koa/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-middleware-koa",
3-
"version": "1.3.1",
3+
"version": "1.3.3",
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": [

packages/graphql-playground-middleware-lambda/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-middleware-lambda",
3-
"version": "1.3.1",
3+
"version": "1.3.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": [

packages/graphql-playground/package.json

Lines changed: 19 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
22
"name": "graphql-playground",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"main": "./lib/lib.js",
55
"typings": "./lib/lib.d.ts",
6-
"description": "GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive docs & collaboration).",
6+
"description":
7+
"GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive docs & collaboration).",
78
"contributors": [
89
"Tim Suchanek <[email protected]>",
910
"Johannes Schickling <[email protected]>"
@@ -17,22 +18,21 @@
1718
"start": "node scripts/start.js",
1819
"prepublishOnly": "yarn build",
1920
"copy-styles": "cat src/styles/*.css > playground.css",
20-
"build": "rimraf dist build dist && yarn build-app && yarn build-package && yarn copy-styles",
21+
"build":
22+
"rimraf dist build dist && yarn build-app && yarn build-package && yarn copy-styles",
2123
"tsc": "tsc -p tsconfig.build.json",
22-
"build-package": "rimraf lib build/dist && npm run tsc && babel lib -d lib && cp -r ./src/assets/ ./lib/assets/ && cd lib && rimraf *.jsx;",
24+
"build-package":
25+
"rimraf lib build/dist && npm run tsc && babel lib -d lib && cp -r ./src/assets/ ./lib/assets/ && cd lib && rimraf *.jsx;",
2326
"build-app": "node scripts/build.js",
2427
"test": "node scripts/test.js --env=jsdom",
2528
"bump": "npm version patch --no-git-tag-version && git add package.json",
2629
"graphql-faker": "graphql-faker ./tests/schema.faker.graphql",
2730
"lint": "tslint \"src/**/*.ts{,x}\"",
2831
"precommit": "lint-staged",
29-
"prettier": "prettier --single-quote --no-semi --trailing-comma all --write *.{ts,tsx} 'src/**/*.{ts,tsx}'"
32+
"prettier":
33+
"prettier --single-quote --no-semi --trailing-comma all --write *.{ts,tsx} 'src/**/*.{ts,tsx}'"
3034
},
31-
"files": [
32-
"build",
33-
"lib",
34-
"playground.css"
35-
],
35+
"files": ["build", "lib", "playground.css"],
3636
"devDependencies": {
3737
"@types/deasync": "^0.1.0",
3838
"@types/express": "^4.0.36",
@@ -76,7 +76,8 @@
7676
"postcss-cssnext": "^2.9.0",
7777
"postcss-flexbugs-fixes": "^3.2.0",
7878
"postcss-import": "^9.1.0",
79-
"postcss-inherit": "git+https://github.com/timsuchanek/postcss-inherit#build3",
79+
"postcss-inherit":
80+
"git+https://github.com/timsuchanek/postcss-inherit#build3",
8081
"postcss-inject": "^1.0.1",
8182
"postcss-loader": "1.0.0",
8283
"postcss-nested": "^1.0.0",
@@ -106,9 +107,7 @@
106107
"why-did-you-update": "^0.0.8"
107108
},
108109
"babel": {
109-
"plugins": [
110-
"styled-jsx-postcss/babel"
111-
]
110+
"plugins": ["styled-jsx-postcss/babel"]
112111
},
113112
"dependencies": {
114113
"calculate-size": "^1.1.1",
@@ -143,7 +142,8 @@
143142
"rxjs": "^5.0.3",
144143
"seamless-immutable": "^7.0.1",
145144
"styled-components": "^2.2.3",
146-
"styled-jsx-postcss": "git+https://github.com/timsuchanek/styled-jsx-postcss#build3",
145+
"styled-jsx-postcss":
146+
"git+https://github.com/timsuchanek/styled-jsx-postcss#build3",
147147
"styled-theming": "^2.2.0",
148148
"subscriptions-transport-ws": "^0.8.1"
149149
},
@@ -156,12 +156,8 @@
156156
"gitDir": "../../"
157157
},
158158
"jest": {
159-
"collectCoverageFrom": [
160-
"src/**/*.{ts,tsx}"
161-
],
162-
"setupFiles": [
163-
"<rootDir>/config/polyfills.js"
164-
],
159+
"collectCoverageFrom": ["src/**/*.{ts,tsx}"],
160+
"setupFiles": ["<rootDir>/config/polyfills.js"],
165161
"testPathIgnorePatterns": [
166162
"<rootDir>[/\\\\](build|docs|node_modules)[/\\\\]"
167163
],
@@ -172,17 +168,11 @@
172168
"^.+\\.tsx?$": "<rootDir>/config/jest/typescriptTransform.js",
173169
"^(?!.*\\.(css|json)$)": "<rootDir>/config/jest/fileTransform.js"
174170
},
175-
"transformIgnorePatterns": [
176-
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
177-
],
171+
"transformIgnorePatterns": ["[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"],
178172
"moduleNameMapper": {
179173
"^react-native$": "react-native-web"
180174
},
181-
"moduleFileExtensions": [
182-
"ts",
183-
"tsx",
184-
"js"
185-
],
175+
"moduleFileExtensions": ["ts", "tsx", "js"],
186176
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
187177
}
188178
}

packages/graphql-playground/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
#npm publish
5+
npm publish
66

77
curl -X POST \
88
http://purge.jsdelivr.net/ \

0 commit comments

Comments
 (0)