Skip to content

Commit

Permalink
SDK 2.2 + CLI 1.7.1 Release (#9894)
Browse files Browse the repository at this point in the history
* SDKs 2.2.0 alpha 1

* release CLI and write doc on how to do so

* SDKS 2.2.0 alpha 2

* celo cli 1.7.1 alpha 1

* yarn and add to instructions

* Beta 1 (dont include ts or map files in npm bundles)

* fix yarn file

* tell it to build deps

* try using suffics

* document this weird stuff

* publish 2.2.0 and 1.7.1

* reyarn
  • Loading branch information
aaronmgdr authored Oct 4, 2022
1 parent 1acca06 commit 4deea97
Show file tree
Hide file tree
Showing 54 changed files with 546 additions and 508 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
- run:
name: Build packages
command: |
yarn build --ignore docs
yarn build --ignore docs --include-dependencies
- run:
name: Check licenses
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"reset-yarn": "yarn cache clean",
"test": "yarn run lerna run test",
"build": "yarn run lerna run build",
"clean": "yarn run lerna run clean",
"docs": "yarn run lerna run docs",
"check-licenses": "yarn licenses list --prod | grep '\\(─ GPL\\|─ (GPL-[1-9]\\.[0-9]\\+ OR GPL-[1-9]\\.[0-9]\\+)\\)' && echo 'Found GPL license(s). Use 'yarn licenses list --prod' to look up the offending package' || echo 'No GPL licenses found'",
"report-coverage": "yarn run lerna run test-coverage",
Expand Down
8 changes: 4 additions & 4 deletions packages/attestation-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
"test-send-sms-twilio": "TS_NODE_FILES=true CONFIG=config/.env.development ts-node scripts/test-send-sms-twilio.ts"
},
"dependencies": {
"@celo/contractkit": "2.1.1-dev",
"@celo/identity": "2.1.1-dev",
"@celo/keystores": "2.1.1-dev",
"@celo/phone-utils": "2.1.1-dev",
"@celo/contractkit": "2.2.1-dev",
"@celo/identity": "2.2.1-dev",
"@celo/keystores": "2.2.1-dev",
"@celo/phone-utils": "2.2.1-dev",
"bignumber.js": "^9.0.0",
"body-parser": "1.19.0",
"bunyan": "1.8.12",
Expand Down
20 changes: 10 additions & 10 deletions packages/celotool/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
"author": "Celo",
"license": "Apache-2.0",
"dependencies": {
"@celo/base": "2.1.1-dev",
"@celo/connect": "2.1.1-dev",
"@celo/cryptographic-utils": "2.1.1-dev",
"@celo/contractkit": "2.1.1-dev",
"@celo/base": "2.2.1-dev",
"@celo/connect": "2.2.1-dev",
"@celo/cryptographic-utils": "2.2.1-dev",
"@celo/contractkit": "2.2.1-dev",
"@celo/env-tests": "1.0.0",
"@types/ethereumjs-util": "^5.2.0",
"@celo/explorer": "2.1.1-dev",
"@celo/governance": "2.1.1-dev",
"@celo/identity": "2.1.1-dev",
"@celo/network-utils": "2.1.1-dev",
"@celo/utils": "2.1.1-dev",
"@celo/explorer": "2.2.1-dev",
"@celo/governance": "2.2.1-dev",
"@celo/identity": "2.2.1-dev",
"@celo/network-utils": "2.2.1-dev",
"@celo/utils": "2.2.1-dev",
"@google-cloud/monitoring": "0.7.1",
"@google-cloud/pubsub": "^0.28.1",
"@google-cloud/secret-manager": "3.0.0",
Expand Down Expand Up @@ -66,4 +66,4 @@
"build": "tsc -b ."
},
"private": true
}
}
10 changes: 9 additions & 1 deletion packages/cli/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,12 @@
/tmp/
/.tmp/

/scripts
/scripts


# exclude ts files and sourcemaps
*.map
*.ts

# include the .d.ts files
!lib/**/*.d.ts
Loading

0 comments on commit 4deea97

Please sign in to comment.