Fix the issues preventing to build (#257)

* Lock deps to fix build issues

* Upgrade some of the deps

* Upgrade to the latest polkadot util-crypto and stop reporting issues on the libs

* Remove buggy 'yarn check' and add prettifier check
This commit is contained in:
Chevdor
2020-04-23 19:00:05 +02:00
committed by GitHub
parent 999404d3e2
commit 5b7f1ecbbb
5 changed files with 2254 additions and 3701 deletions
+1 -1
View File
@@ -31,6 +31,6 @@ before_script:
script:
- cd frontend
- yarn
- yarn pretty:check
- yarn test
- yarn check
- yarn build
+1
View File
@@ -1,2 +1,3 @@
.nyc
.nyc_output
report.20200422.181728.7118.0.001.json
+12 -10
View File
@@ -13,7 +13,7 @@
"eject": "react-scripts-ts eject",
"pretty:check": "prettier --check src/**/*.{ts,tsx}",
"pretty:fix": "prettier --write src",
"clean": "rm -rf node_modules build .nyc env-config.js"
"clean": "rm -rf node_modules build .nyc env-config.js report*.json yarn-error.log"
},
"dependencies": {
"@fnando/sparkline": "maciejhirsz/sparkline",
@@ -21,30 +21,32 @@
"@types/react-measure": "^2.0.6",
"blakejs": "^1.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"lint-staged": "^10.1.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-measure": "^2.3.0",
"react-scripts-ts": "2.17.0",
"react-svg": "^11.0.18",
"react-scripts-ts": "3.1.0",
"react-svg": "4.1.1",
"stable": "^0.1.8",
"tslint": "^6.1.1"
},
"resolutions": {
"chalk": "^2.4.2"
},
"devDependencies": {
"@types/node": "^13.11.1",
"@types/node": "^13.13.2",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-svg": "^5.0.0",
"@types/tape": "^4.2.34",
"@types/react-svg": "3.0.0",
"@types/tape": "^4.13.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"identity-obj-proxy": "^3.0.0",
"istanbul": "^0.4.5",
"jest": "^25.3.0",
"nyc": "^15.0.1",
"prettier": "^2.0.4",
"prettier": "^2.0.5",
"tape": "^4.13.2",
"ts-node": "^8.8.2",
"ts-node": "^8.9.0",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
+3 -2
View File
@@ -21,8 +21,9 @@
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"resolveJsonModule": true,
"noUnusedParameters": true
"noUnusedParameters": true,
"skipLibCheck": true
},
"exclude": ["node_modules", "build"],
"include": ["src/**/*.ts", "src/**/*.tsx", "./declarations/**/*.d.ts"]
"include": ["src/**/*.ts", "src/**/*.tsx", "declarations/**/*.d.ts"]
}
+2237 -3688
View File
File diff suppressed because it is too large Load Diff