You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In general, most upgrades won't require any migration steps to work, but if you experience problems after an upgrade, please file an issue, and we'll add it to the list of migration steps below.
23
23
24
-
### From `<2.5.0` to `>=2.5.0`
25
-
26
-
Version `2.5.0` introduces a new config file for jest, that is necessary for the tests to run. If you were previously running a version older than `v2.5.0` and upgraded to `v2.5.0` or newer, you need to manually add the new file, or else you'll get an error similar to this when trying to run your tests:
27
-
28
-
```javascript
29
-
Test suite failed to run
30
-
31
-
{
32
-
"messageText":"Cannot read file 'C:\\[project]\\tsconfig.test.json': ENOENT: no such file or directory, open 'C:\\[project]\\tsconfig.test.json'.",
33
-
"category":1,
34
-
"code":5012
35
-
}
36
-
```
37
-
38
-
To fix this, create a new file *in the root of the project* called `tsconfig.test.json`, and paste [the content of this file into it](https://raw.githubusercontent.com/wmonk/create-react-app-typescript/master/packages/react-scripts/template/tsconfig.test.json). Everything should work now. For more info, please see [this issue](https://github.com/wmonk/create-react-app-typescript/issues/141).
39
-
40
24
## Changelog
41
25
42
-
### 2.13.0
43
-
* Remove tslint-loader from prod builds - @DorianGrey
44
-
* Include typescript as devDependency in boilerplate - @ianschmitz
45
-
* Document custom module formats - @joshtynjala
46
-
* Fix tsconfig.json - @diabelb
47
-
48
-
### 2.12.0
49
-
* Update typescript to 2.6.2
50
-
51
-
### 2.11.0
52
-
* Upgrade to [`[email protected]`](https://github.com/facebookincubator/create-react-app/releases/tag/v1.0.17)
53
-
54
-
### 2.10.0
55
-
* README updates - StefanSchoof
56
-
* README updates - DorianGrey
57
-
* Add support for fork-ts-checker-webpack-plugin - johnnyreilly
58
-
59
-
### 2.9.0 - UNPUBLISHED
60
-
This included changes that were not published by the facebook upstream, so was unpublished.
0 commit comments