Skip to content

Update from upstream repo wmonk/create-react-app-typescript@master #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 47 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
29c8b00
exclude coverage from tslint.json
alexandrudanpop Jun 12, 2018
7e2a0be
Merge pull request #340 from alexandrudanpop/#339_tslint_fix
wmonk Jun 12, 2018
c27879b
Use correct tsconfig file for TsconfigPathsPlugin
DorianGrey May 15, 2018
6edb4ff
Resolve merge conflict
AndrewKvalheim Jun 25, 2018
26e43db
fix: do not add ESLint config to ejected app
aurerua Jun 28, 2018
608e0e2
Merge pull request #351 from aurerua/master
wmonk Jul 2, 2018
e4b1f94
Merge pull request #347 from AndrewKvalheim/patch-1
DorianGrey Jul 5, 2018
75ee15f
Update README For 2.17.0
wmonk Aug 5, 2018
2ffd32b
v2.17.0
wmonk Aug 5, 2018
aadae6a
fix: don't let uglify-es inline functions with arguments
ppvg Aug 6, 2018
5b4e661
Makes getting started a one-liner
codereviewvideos Aug 23, 2018
e2f8470
(chore) tune up TypeScript compiler
r3nya Aug 24, 2018
54255b0
Add tslib
r3nya Aug 25, 2018
393cf6c
fix(jest,npm): Explicitly set testURL for jest; remove npm cache clea…
DorianGrey Aug 28, 2018
ce416aa
Merge pull request #381 from r3nya/patch-1
DorianGrey Aug 28, 2018
8b5b8ae
Merge pull request #377 from ppvg/master
DorianGrey Aug 28, 2018
7329dd5
Lift all react-scripts-ts content to root
wmonk Aug 5, 2018
a2f15fb
Update Tests For CI
wmonk Aug 5, 2018
798da0a
Update package version before testing
wmonk Aug 5, 2018
eb1533d
Update verdaccio
wmonk Aug 5, 2018
ea7b9cb
Update Verdaccio Again
Aug 31, 2018
382b748
Remove Kitchen Sink Stuff
Aug 31, 2018
52a51b4
Update Test Stuff
Aug 31, 2018
50d4ae5
Merge pull request #227 from wmonk/break-fork-link
wmonk Aug 31, 2018
990e6bc
Replace README
Aug 31, 2018
29867a0
Update dependencies to match upstream
Aug 31, 2018
b60cbad
Update More Dependencies
Aug 31, 2018
92b112a
Reset Package Versions
wmonk Sep 2, 2018
55ea269
Downgrade TS Packages
wmonk Sep 2, 2018
c716736
Update README.md
wmonk Sep 2, 2018
4c49969
Merge pull request #380 from codereviewvideos/patch-1
wmonk Sep 2, 2018
0dfd82f
Update README
wmonk Sep 2, 2018
48bcfe7
Update README.md
wmonk Sep 2, 2018
2fc595c
Fix links in migration instructions
csantero Sep 4, 2018
f3c855e
Fixed link to the tsconfig.prod.json example
ajhool Sep 4, 2018
d567326
Merge pull request #393 from ajhool/readme-link-fix
wmonk Sep 4, 2018
067b8fc
Merge pull request #391 from csantero/patch-1
wmonk Sep 4, 2018
6b92ca6
added a wider range of common image formats
JoshuaRabiu Sep 16, 2018
aaac716
Update config for Jest
r3nya Sep 27, 2018
24ebcd4
Merge pull request #401 from JoshuaScript/JoshuaScript-patch-1
DorianGrey Sep 28, 2018
88f8aa1
Update createJestConfig.js
r3nya Sep 28, 2018
10a5957
Merge pull request #406 from r3nya/patch-1
wmonk Sep 28, 2018
4d530db
3.0.0
Sep 28, 2018
2cb3de9
3.1.0
Sep 28, 2018
f936f01
chore(package): update description, repository, and bugs.url
bitjson Oct 12, 2018
eb34688
Merge pull request #420 from bitjson/master
DorianGrey Oct 12, 2018
ef987c1
Update README.md
wmonk Dec 12, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Makes getting started a one-liner
  • Loading branch information
codereviewvideos authored Aug 23, 2018
commit 5b4e661c5a25298f517bbe80de43fff203e42c27
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@ _Do you know react and want to try out typescript? Or do you know typescript and
## tl;dr

```sh
npm install -g create-react-app
npx create-react-app my-app --scripts-version=react-scripts-ts

# or if you prefer:
npm install -g create-react-app
create-react-app my-app --scripts-version=react-scripts-ts

# then:
cd my-app/
npm start
```
Expand Down