Skip to content

Commit

Permalink
celo cli 3 release | no longer include shrinkwrap (#10560)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
Co-authored-by: alvarof2 <[email protected]>
  • Loading branch information
3 people authored Sep 20, 2023
1 parent 5b9fe3f commit bd8f74a
Show file tree
Hide file tree
Showing 22 changed files with 4,562 additions and 11,550 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/circleci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
restore-keys: |
code-${{ github.sha }}
- name: Install yarn dependencies
run: yarn install
run: git config --global url."https://".insteadOf ssh:// && yarn install
if: steps.cache_node.outputs.cache-hit != 'true'
- name: Run yarn postinstall if cache hitted
run: yarn run postinstall
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"license": "SEE LICENSE IN SUB-PACKAGES",
"private": true,
"scripts": {
"preinstall": "git config --global url.\"https://\".insteadOf ssh://",
"install-pkg": "yarn install --link-duplicates",
"lint": "yarn lerna run lint && yarn run --silent lint:do-not-merge",
"lint:do-not-merge": "! git grep -E 'DO[ _]*NOT[ _]*MERGE'",
Expand Down Expand Up @@ -83,6 +84,8 @@
"typescript-tslint-plugin": "^0.5.4"
},
"resolutions": {
"bip39": "https://github.com/bitcoinjs/bip39#d8ea080a18b40f301d4e2219a2991cd2417e83c2",
"blind-threshold-bls": "npm:@celo/[email protected]",
"ganache": "npm:@celo/[email protected]",
"@types/bn.js": "4.11.6",
"bignumber.js": "9.0.0"
Expand Down
3 changes: 3 additions & 0 deletions packages/celotool/src/types.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
declare module 'web3-utils'
declare module 'country-data'
declare module 'bip39' {
function mnemonicToSeedSync(mnemonic: string): Buffer
}
declare module 'read-last-lines' {
namespace readLastLines {
function read(inputFilePath: string, maxLineCount: number, encoding?: string): Promise<string[]>
Expand Down
Loading

0 comments on commit bd8f74a

Please sign in to comment.