Skip to content
This repository was archived by the owner on Oct 31, 2024. It is now read-only.

Commit 5e3469e

Browse files
committed
4.3.1
- bumps to Typescript 3.4.2 - fixes Typescript build errors in external packages - fixes compiler warnings - fixes `createBrowserHistory` import - adds `@types/ws` - adds `@types/graphql` - adds `bufferutil` - bumps `react-apollo` -> 2.5.4 - bumps `react-hot-loader` -> 4.8.3 - adds `utf-8-validate` - adds explicit `incremental: true` TS config option
1 parent d38317d commit 5e3469e

4 files changed

Lines changed: 58 additions & 16 deletions

File tree

package-lock.json

Lines changed: 47 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reactql",
3-
"version": "4.3.0",
3+
"version": "4.3.1",
44
"description": "ReactQL - front-end React/GraphQL starter kit",
55
"main": "index.js",
66
"scripts": {
@@ -41,6 +41,7 @@
4141
"@graphql-codegen/typescript-react-apollo": "^1.0.6",
4242
"@hot-loader/react-dom": "^16.8.6",
4343
"@types/compression-webpack-plugin": "^2.0.0",
44+
"@types/graphql": "^14.2.0",
4445
"@types/history": "^4.7.2",
4546
"@types/html-webpack-plugin": "^3.2.0",
4647
"@types/kcors": "^2.2.3",
@@ -63,6 +64,7 @@
6364
"@types/webpack": "^4.4.27",
6465
"@types/webpack-dev-server": "^3.1.5",
6566
"@types/webpack-node-externals": "^1.6.3",
67+
"@types/ws": "^6.0.1",
6668
"babel-core": "^6.26.3",
6769
"babel-loader": "^8.0.5",
6870
"babel-plugin-emotion": "^10.0.9",
@@ -91,7 +93,7 @@
9193
"ts-loader": "^5.3.3",
9294
"ts-node": "^8.0.3",
9395
"tslint": "^5.15.0",
94-
"typescript": "^3.4.1",
96+
"typescript": "^3.4.2",
9597
"webpack": "^4.29.6"
9698
},
9799
"dependencies": {
@@ -105,6 +107,7 @@
105107
"apollo-link-state": "^0.4.2",
106108
"apollo-link-ws": "^1.0.17",
107109
"apollo-utilities": "^1.2.1",
110+
"bufferutil": "^4.0.1",
108111
"chalk": "^2.4.2",
109112
"cross-env": "^5.2.0",
110113
"cross-fetch": "^3.0.2",
@@ -125,11 +128,12 @@
125128
"react": "^16.8.6",
126129
"react-addons-css-transition-group": "^15.6.2",
127130
"react-addons-transition-group": "^15.6.2",
128-
"react-apollo": "^2.5.3",
131+
"react-apollo": "^2.5.4",
129132
"react-dom": "^16.8.6",
130133
"react-helmet": "^5.2.0",
131-
"react-hot-loader": "^4.8.2",
134+
"react-hot-loader": "^4.8.3",
132135
"react-router-dom": "^5.0.0",
133-
"subscriptions-transport-ws": "^0.9.16"
136+
"subscriptions-transport-ws": "^0.9.16",
137+
"utf-8-validate": "^5.0.2"
134138
}
135139
}

src/entry/client.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/* NPM */
77

88
// Create browser history, for navigation a la single page apps
9-
import createBrowserHistory from "history/createBrowserHistory";
9+
import { createBrowserHistory } from "history";
1010

1111
// React, our UI engine
1212
import * as React from "react";

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3+
"incremental": true,
34
"allowJs": false,
45
"allowUnusedLabels": true,
56
"baseUrl": ".",

0 commit comments

Comments
 (0)