Skip to content

Commit 1f41f8b

Browse files
committed
readme
1 parent c164105 commit 1f41f8b

File tree

1 file changed

+6
-121
lines changed

1 file changed

+6
-121
lines changed

README.md

Lines changed: 6 additions & 121 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `react-scripts-ts` [![npm version](https://badge.fury.io/js/react-scripts-ts.svg)](https://badge.fury.io/js/react-scripts-ts) [![Build Status](https://travis-ci.org/wmonk/create-react-app-typescript.svg?branch=master)](https://travis-ci.org/wmonk/create-react-app-typescript)
1+
# `@biko/react-scripts` [![npm version](https://badge.fury.io/js/%40biko%2Freact-scripts@2x.png)]
22

33
Create React apps (with Typescript) with no build configuration.
44

@@ -12,7 +12,7 @@ _Do you know react and want to try out typescript? Or do you know typescript and
1212
```sh
1313
npm install -g create-react-app
1414

15-
create-react-app my-app --scripts-version=react-scripts-ts
15+
create-react-app my-app --scripts-version=@biko/react-scripts
1616
cd my-app/
1717
npm start
1818
```
@@ -21,125 +21,10 @@ npm start
2121

2222
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.
2323

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-
4024
## Changelog
4125

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.
61-
62-
### 2.8.0
63-
* Update typescript to 2.5.3 - @nicolaserny
64-
65-
### 2.7.0
66-
* Merge [email protected] - @JohnNilsson
67-
* Fix git tempalte - @hktonylee
68-
* Provide migration docs - @JReinhold
69-
* Updated dependencies - @swengorschewski
70-
* Fix tslint config - @comerc
71-
72-
### 2.6.0
73-
* Merge [email protected] - @wmonk
74-
* Update component template - @pelotom
75-
76-
### 2.5.0
77-
* Support dynamic imports - thanks @nicolaserny, @DorianGrey
78-
* Fix up tsconfig - thanks @js-n
79-
* Fix readme typo - thanks @adambowles
80-
* Move to ts-jest - thanks @DorianGrey
81-
82-
### 2.4.0
83-
* Upgrade typescript to 2.4 and ts-loader to 2.2.1 - thanks @frederickfogerty
84-
* Fix readme typo - thanks @wrongway4you
85-
86-
### 2.3.2
87-
* Fix `typescript` version to 2.3.x until 2.4 @types are fixed
88-
89-
### 2.3.1
90-
91-
* All tsc to parse config (for `extend`) - Thanks to @DorianGrey
92-
* Fix various jest issues - thanks to @zinserjan
93-
* Fix code coverage - thanks to @zinserjan
94-
95-
### 2.2.0
96-
* Upgrade to [`[email protected]`](https://github.com/facebookincubator/create-react-app/)
97-
98-
### 2.1.0
99-
* Update to `[email protected]` - thanks to @mindjuice
100-
* Fix test setup issue - thanks to @jonmpqts
101-
* Add `source-map-loader` - thanks to @Place1
102-
* Update to `[email protected]` - thanks to @sjdweb
103-
104-
### 2.0.1
105-
* Fix issue with jest finding test files
106-
107-
### 2.0.0
108-
* Upgrade to [`[email protected]`](https://github.com/facebookincubator/create-react-app/blob/0d1521aabf5a0201ea1bcccc33e286afe048f820/CHANGELOG.md)
109-
110-
### 1.4.0
111-
* Upgrade to [email protected] - thanks to @patrick91
112-
* Add tests around react-scripts-ts - thanks to @migerh
113-
114-
### 1.3.0
115-
* Upgrade to [email protected] - thanks to @jeremistadler
116-
117-
### 1.1.8
118-
* Fix regression where no `@types` were being installed on init
119-
120-
### 1.1.7
121-
* Merge facebookincubator/[email protected] into react-scripts-ts
122-
* Merge facebookincubator/[email protected] into react-scripts-ts
123-
* Merge facebookincubator/[email protected] into react-scripts-ts
124-
* Merge facebookincubator/[email protected] into react-scripts-ts
125-
* Merge facebookincubator/[email protected] into react-scripts-ts
126-
127-
### 1.1.6
128-
* Merge facebookincubator/[email protected] into react-scripts-ts
129-
130-
### 1.0.6
131-
* Add missing `cli-highlight` dependency
132-
133-
### 1.0.5
134-
* Print file names when running `npm run build`
135-
* Add support for `setupTest.ts`
136-
* Highlight source code when erroring in `npm run build`
137-
138-
### 1.0.4
139-
* Change mentions of `eslint` to `tslint`
140-
141-
### 1.0.3
142-
* Remove hidden character from `tsconfig.json`
26+
### 0.4.0
27+
* Añadida configuración de Prettier al template
14328

144-
### 1.0.2
145-
* Copy `typescriptTransform.js` when running `npm run eject`
29+
### 0.3.1
30+
* Añadido soporte de SASS

0 commit comments

Comments
 (0)