-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to create-react-app v2.1.0 (#375)
* Update to create-react-app v2.1.0 * Remove IGroupRenderProps * Update inline html report
- Loading branch information
1 parent
f404140
commit 43b2f54
Showing
21 changed files
with
21,338 additions
and
5,211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,23 @@ | ||
node_modules/ | ||
build/ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.log | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,32 @@ | ||
{ | ||
"name": "tmp_react_ts", | ||
"name": "junit_html_report", | ||
"version": "0.1.0", | ||
"private": true, | ||
"dependencies": { | ||
"office-ui-fabric-react": "^5.57.0", | ||
"react": "^16.2.0", | ||
"react-dom": "^16.2.0", | ||
"react-scripts-ts": "2.13.0" | ||
}, | ||
"scripts": { | ||
"start": "react-scripts-ts start", | ||
"build": "react-scripts-ts build", | ||
"test": "react-scripts-ts test --env=jsdom", | ||
"eject": "react-scripts-ts eject" | ||
"office-ui-fabric-react": "^6.97.0", | ||
"react": "^16.6.0", | ||
"react-dom": "^16.6.0", | ||
"react-scripts": "2.1.0", | ||
"typescript": "^3.1.4" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^22.1.4", | ||
"@types/node": "^9.4.6", | ||
"@types/prop-types": "^15.5.2", | ||
"@types/react": "^16.0.39", | ||
"@types/react-dom": "^16.0.4", | ||
"office-ui-fabric-react-tslint": "file:packages/office-ui-fabric-react-tslint", | ||
"tslint": "^5.9.1", | ||
"tslint-microsoft-contrib": "^5.0.3", | ||
"typescript": "^2.7.2", | ||
"@types/react": "^16.4.18", | ||
"@types/react-dom": "^16.0.9", | ||
"web-resource-inliner": "^4.2.1" | ||
} | ||
}, | ||
"scripts": { | ||
"start": "react-scripts start", | ||
"build": "react-scripts build", | ||
"test": "react-scripts test", | ||
"eject": "react-scripts eject" | ||
}, | ||
"eslintConfig": { | ||
"extends": "react-app" | ||
}, | ||
"browserslist": [ | ||
">0.2%", | ||
"not dead", | ||
"not ie <= 11", | ||
"not op_mini all" | ||
] | ||
} |
7 changes: 0 additions & 7 deletions
7
junit_html_report/packages/office-ui-fabric-react-tslint/package-deps.json
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
junit_html_report/packages/office-ui-fabric-react-tslint/package.json
This file was deleted.
Oops, something went wrong.
177 changes: 0 additions & 177 deletions
177
junit_html_report/packages/office-ui-fabric-react-tslint/tslint.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,7 @@ body { | |
padding: 0; | ||
font-family: sans-serif; | ||
} | ||
|
||
.GroupedList-name { | ||
padding-bottom: 40px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/// <reference types="react-scripts" /> |
Oops, something went wrong.