Skip to content

Commit bd8f74a

Browse files
aaronmgdrjcortejosoalvarof2
authored
celo cli 3 release | no longer include shrinkwrap (#10560)
* celo cli 3 beta 2 | no longer include shrinkwrap * update releasing doc * fix src vs lib * 3.0 beta 4 also fix some dep listings * bump to 3.0 * add back dev suffix * dont use git repo use npm package * typo * no git deps! * use published version of @celo/blind-threshhold-bls * Debug * Remove debug * Add git config to use https for ssh git repos * declare module * add missing pkg * dadt * fix mismatch abort controller versions * no implicit imports! * cheeky * declare mod * use v3 of bip39 * revert * how? * another * map blind to celo blind to avoid a conflict (and maybe fix all the errors :) * eyes only * no shh * remove typo space, one bip to rule them all! * no comment --------- Co-authored-by: Javier Cortejoso <javier.cortejoso@gmail.com> Co-authored-by: alvarof2 <fernandez.f.alvaro@gmail.com>
1 parent 5b9fe3f commit bd8f74a

File tree

22 files changed

+4562
-11550
lines changed

22 files changed

+4562
-11550
lines changed

.github/workflows/circleci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
restore-keys: |
107107
code-${{ github.sha }}
108108
- name: Install yarn dependencies
109-
run: yarn install
109+
run: git config --global url."https://".insteadOf ssh:// && yarn install
110110
if: steps.cache_node.outputs.cache-hit != 'true'
111111
- name: Run yarn postinstall if cache hitted
112112
run: yarn run postinstall

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"license": "SEE LICENSE IN SUB-PACKAGES",
66
"private": true,
77
"scripts": {
8+
"preinstall": "git config --global url.\"https://\".insteadOf ssh://",
89
"install-pkg": "yarn install --link-duplicates",
910
"lint": "yarn lerna run lint && yarn run --silent lint:do-not-merge",
1011
"lint:do-not-merge": "! git grep -E 'DO[ _]*NOT[ _]*MERGE'",
@@ -83,6 +84,8 @@
8384
"typescript-tslint-plugin": "^0.5.4"
8485
},
8586
"resolutions": {
87+
"bip39": "https://github.com/bitcoinjs/bip39#d8ea080a18b40f301d4e2219a2991cd2417e83c2",
88+
"blind-threshold-bls": "npm:@celo/blind-threshold-bls@1.0.0-beta",
8689
"ganache": "npm:@celo/ganache@7.8.0-unofficial.0",
8790
"@types/bn.js": "4.11.6",
8891
"bignumber.js": "9.0.0"

packages/celotool/src/types.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
declare module 'web3-utils'
22
declare module 'country-data'
3+
declare module 'bip39' {
4+
function mnemonicToSeedSync(mnemonic: string): Buffer
5+
}
36
declare module 'read-last-lines' {
47
namespace readLastLines {
58
function read(inputFilePath: string, maxLineCount: number, encoding?: string): Promise<string[]>

0 commit comments

Comments
 (0)