Skip to content

Commit e000590

Browse files

File tree

25 files changed

+57
-58
lines changed

25 files changed

+57
-58
lines changed

examples/graphiql-cdn/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6-
## 0.0.8-alpha.0 (2020-01-18)
7-
86
**Note:** Version bump only for package example-graphiql-cdn
97

8+
## 0.0.8-alpha.1 (2020-01-18)
9+
10+
1011
## [0.0.7](https://github.com/graphql/graphiql/compare/[email protected]@0.0.7) (2019-12-03)
1112

1213
**Note:** Version bump only for package graphiql-example-cdn

examples/graphiql-cdn/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "example-graphiql-cdn",
3-
"version": "0.0.8-alpha.0",
3+
"version": "0.0.8-alpha.1",
44
"private": true,
55
"license": "MIT",
66
"description": "An example using GraphiQL",

examples/graphiql-webpack/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6-
# 1.0.0-alpha.0 (2020-01-18)
6+
# 1.0.0-alpha.1 (2020-01-18)
77

88
### Features
99

examples/graphiql-webpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "example-graphiql-webpack",
3-
"version": "1.0.0-alpha.0",
3+
"version": "1.0.0-alpha.1",
44
"private": true,
55
"license": "MIT",
66
"description": "A GraphiQL example with webpack and typescript",

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,15 @@
2121
}
2222
},
2323
"scripts": {
24-
"build": "yarn run build-clean && yarn build-ts && yarn build-js",
24+
"build": "yarn run build-clean && yarn build-ts-cjs && yarn build-js",
2525
"build-js": "lerna run build --scope codemirror-graphql",
26-
"build-ts": "yarn run tsc",
26+
"build-ts-cjs": "yarn run tsc resources/tsconfig.build.cjs.json",
27+
"build-ts-esm": "yarn run tsc resources/tsconfig.build.esm.json",
2728
"build-clean": "yarn run tsc --clean && rimraf '{packages,examples}/**/{dist,esm,bundle,cdn,webpack,storybook}' && lerna run build-clean --parallel",
2829
"build-validate": "lerna run build-validate",
2930
"build-demo": "lerna run build-demo",
3031
"build-docs": "rimraf 'packages/graphiql/lsp' && typedoc 'packages'",
31-
"build-bundles": "lerna run build-bundles",
32+
"build-bundles": "yarn build-ts-esm && lerna run build-bundles",
3233
"tsc": "tsc --build",
3334
"test": "yarn build && yarn run testonly",
3435
"ci": "yarn run lint && yarn run check && yarn run build && yarn run testonly && yarn build-bundles && yarn run e2e && yarn build-validate",

packages/codemirror-graphql/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6-
# [0.12.0-alpha.0](https://github.com/graphql/graphiql/compare/[email protected]@0.12.0-alpha.0) (2020-01-18)
6+
# [0.12.0-alpha.1](https://github.com/graphql/graphiql/compare/[email protected]@0.12.0-alpha.1) (2020-01-18)
77

88
### Bug Fixes
99

packages/codemirror-graphql/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codemirror-graphql",
3-
"version": "0.12.0-alpha.0",
3+
"version": "0.12.0-alpha.1",
44
"description": "GraphQL mode and helpers for CodeMirror.",
55
"contributors": [
66
"Hyohyeon Jeong <[email protected]>",
@@ -52,8 +52,8 @@
5252
"graphql": "^0.12.0 || ^0.13.0 || ^14.0.0"
5353
},
5454
"dependencies": {
55-
"graphql-language-service-interface": "^2.4.0-alpha.0",
56-
"graphql-language-service-parser": "^1.5.3-alpha.0"
55+
"graphql-language-service-interface": "^2.4.0-alpha.1",
56+
"graphql-language-service-parser": "^1.5.3-alpha.1"
5757
},
5858
"devDependencies": {
5959
"chai": "4.1.1",

packages/graphiql/CHANGELOG.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,21 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6-
# [1.0.0-alpha.0](https://github.com/graphql/graphiql/compare/[email protected]@1.0.0-alpha.0) (2020-01-18)
6+
# [1.0.0-alpha.1](https://github.com/graphql/graphiql/compare/[email protected]@1.0.0-alpha.1) (2020-01-18)
77

88
### Bug Fixes
99

1010
- hmr, file resolution warnings ([69bf701](https://github.com/graphql/graphiql/commit/69bf701))
11-
- linting issues, trailingCommas: all ([#1099](https://github.com/graphql/graphiql/issues/1099)) ([de4005b](https://github.com/graphql/graphiql/commit/de4005b))
1211
- prefer displayName over type equality for children overrides ([e4cec0a](https://github.com/graphql/graphiql/commit/e4cec0a))
13-
- remove use of find dom node ([0b12323](https://github.com/graphql/graphiql/commit/0b12323))
14-
- screenshot/gif urls ([e3ea2fc](https://github.com/graphql/graphiql/commit/e3ea2fc))
12+
- remove use of `findDOMNode` ([0b12323](https://github.com/graphql/graphiql/commit/0b12323)) by [@ryan-m-walker](https://github.com/ryan-m-walker)
1513

1614
### Features
1715

18-
- convert LSP Server to Typescript, remove watchman ([#1138](https://github.com/graphql/graphiql/issues/1138)) ([8e33dbb](https://github.com/graphql/graphiql/commit/8e33dbb))
19-
- **graphiql-theming:** Toolbar component ([#1203](https://github.com/graphql/graphiql/issues/1203)) by [@walaura](https://github.com/walaura) ([adb73f5](https://github.com/graphql/graphiql/commit/adb73f5))
20-
- [new-ui] Tabs & Tabbars ([#1198](https://github.com/graphql/graphiql/issues/1198)) ([033f971](https://github.com/graphql/graphiql/commit/033f971))
2116
- deprecate support for 15, support react 16 features ([#1107](https://github.com/graphql/graphiql/issues/1107)) ([bc4b6fc](https://github.com/graphql/graphiql/commit/bc4b6fc))
17+
- **graphiql-theming:** Toolbar component ([#1203](https://github.com/graphql/graphiql/issues/1203)) by [@walaura](https://github.com/walaura) ([adb73f5](https://github.com/graphql/graphiql/commit/adb73f5))
18+
- [new-ui] Tabs & Tabbars ([#1198](https://github.com/graphql/graphiql/issues/1198)) ([033f971](https://github.com/graphql/graphiql/commit/033f971)) by [@walaura](https://github.com/walaura)
2219
- replace use of enzyme with react-testing-library ([#1144](https://github.com/graphql/graphiql/issues/1144)) by [@ryan-m-walker](https://github.com/ryan-m-walker) ([de73d6c](https://github.com/graphql/graphiql/commit/de73d6c))
23-
- storybook+theme-ui for the new design ([#1145](https://github.com/graphql/graphiql/issues/1145)) ([7f97c0c](https://github.com/graphql/graphiql/commit/7f97c0c))
20+
- storybook+theme-ui for the new design ([#1145](https://github.com/graphql/graphiql/issues/1145)) ([7f97c0c](https://github.com/graphql/graphiql/commit/7f97c0c)) by [@walaura](https://github.com/walaura)
2421

2522
### BREAKING CHANGES
2623

packages/graphiql/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphiql",
3-
"version": "1.0.0-alpha.0",
3+
"version": "1.0.0-alpha.1",
44
"description": "An graphical interactive in-browser GraphQL IDE.",
55
"contributors": [
66
"Hyohyeon Jeong <[email protected]>",
@@ -46,7 +46,7 @@
4646
"@emotion/core": "^10.0.22",
4747
"@mdx-js/react": "^1.5.2",
4848
"codemirror": "^5.47.0",
49-
"codemirror-graphql": "^0.12.0-alpha.0",
49+
"codemirror-graphql": "^0.12.0-alpha.1",
5050
"copy-to-clipboard": "^3.2.0",
5151
"entities": "^2.0.0",
5252
"markdown-it": "^10.0.0",

packages/graphiql/src/cdn.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ import './css/show-hint.css';
1818
import './css/doc-explorer.css';
1919
import './css/history.css';
2020

21-
import { GraphiQL } from './components/GraphiQL';
2221
export default GraphiQL;
22+
import { GraphiQL } from './components/GraphiQL';

0 commit comments

Comments
 (0)