Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

celo cli 3 release | no longer include shrinkwrap #10560

Merged
merged 32 commits into from
Sep 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
123daa8
celo cli 3 beta 2 | no longer include shrinkwrap
aaronmgdr Sep 13, 2023
33beaf4
update releasing doc
aaronmgdr Sep 13, 2023
28aca4a
Merge branch 'master' into aaronmgdr/cli3
aaronmgdr Sep 18, 2023
42bd75e
fix src vs lib
aaronmgdr Sep 18, 2023
2101008
Merge branch 'aaronmgdr/cli3' of https://github.com/celo-org/celo-mon…
aaronmgdr Sep 18, 2023
49857c8
3.0 beta 4
aaronmgdr Sep 18, 2023
3466e02
bump to 3.0
aaronmgdr Sep 18, 2023
f678c6e
add back dev suffix
aaronmgdr Sep 18, 2023
1249d27
dont use git repo use npm package
aaronmgdr Sep 18, 2023
3ea8f5f
typo
aaronmgdr Sep 18, 2023
5a20b8c
no git deps!
aaronmgdr Sep 18, 2023
83752fe
use published version of @celo/blind-threshhold-bls
aaronmgdr Sep 18, 2023
5362098
Debug
jcortejoso Sep 18, 2023
756e0bd
Remove debug
jcortejoso Sep 18, 2023
700f4f8
Add git config to use https for ssh git repos
alvarof2 Sep 18, 2023
cf64ba0
declare module
aaronmgdr Sep 19, 2023
5976eca
add missing pkg
aaronmgdr Sep 19, 2023
b49245e
dadt
aaronmgdr Sep 19, 2023
90b0725
fix mismatch abort controller versions
aaronmgdr Sep 19, 2023
dd71432
no implicit imports!
aaronmgdr Sep 19, 2023
5c409fe
cheeky
aaronmgdr Sep 19, 2023
bf8defd
declare mod
aaronmgdr Sep 19, 2023
8d16741
use v3 of bip39
aaronmgdr Sep 19, 2023
7556c47
revert
aaronmgdr Sep 19, 2023
f79df96
how?
aaronmgdr Sep 19, 2023
4e0ed0b
another
aaronmgdr Sep 19, 2023
37942ba
map blind to celo blind to avoid a conflict (and maybe fix all the er…
aaronmgdr Sep 19, 2023
3d4b127
eyes only
aaronmgdr Sep 19, 2023
5c3ca84
no shh
aaronmgdr Sep 19, 2023
bed6f9e
remove typo space, one bip to rule them all!
aaronmgdr Sep 19, 2023
c9ab70b
no comment
aaronmgdr Sep 19, 2023
3e1bfc4
Merge branch 'master' into aaronmgdr/cli3
aaronmgdr Sep 20, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/blind-threshold-bls@1.0.0-beta",
"ganache": "npm:@celo/ganache@7.8.0-unofficial.0",
"@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