Use new token contract's source (#477)
* add script to manually fetch tokens from github.com/ethereum-lists/tokens over IPFS * remove ts files from linting * remove ts files from test to fix CI * WIP token image * improve token default image * Test the pipe with hardcoded IPFS addresses * add comments * add --use-hardcoded-addresses argument * shorten things up with a spread * address comments * fix test and address comment
... | ... | @@ -45,7 +45,7 @@ |
"preelectron": "yarn build", | ||
"electron": "cd packages/fether-electron && yarn electron", | ||
"lint-files": "./scripts/lint-files.sh", | ||
"lint": "yarn lint-files '**/*.{js,ts}'", | ||
"lint": "yarn lint-files '**/*.js'", | ||
"prepackage": "yarn build", | ||
"package": "cd packages/fether-electron && yarn package", | ||
"release": "cd packages/fether-electron && yarn release", | ||
... | ... | @@ -53,7 +53,8 @@ |
"start-electron": "cd packages/fether-electron && yarn start", | ||
"start-react": "cd packages/fether-react && yarn start", | ||
"start-ui": "cd packages/fether-ui && yarn start", | ||
"test": "semistandard '**/*.{js,ts}' --parser babel-eslint && CI=true lerna run test --parallel" | ||
"test": "semistandard '**/*.js' --parser babel-eslint && CI=true lerna run test --parallel", | ||
"update-tokens": "yarn run ts-node --project scripts/updateTokens/tsconfig.json scripts/updateTokens" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
... | ... | @@ -71,6 +72,8 @@ |
"dependencies": { | ||
"download": "^7.1.0", | ||
"node-fetch": "^2.3.0", | ||
"semver": "^5.6.0" | ||
"semver": "^5.6.0", | ||
"ts-node": "^8.0.3", | ||
"typescript": "^3.3.4000" | ||
} | ||
} | ||
} | ||
\ No newline at end of file |
3.76 KB
This diff is collapsed.
This diff is collapsed.
6.04 KB