Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
24 changes: 21 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ aliases:
branches:
only: v2-web3-onboard-develop

- &test_package_version_for_alpha_tag
- &test_package_version_for_alpha_tag_break_false
run:
name: Tagged as Alpha version
name: Tagged as Alpha version if True Continue Flow
command: |
PACKAGE_VERSION=$(cat package.json \
| grep version \
Expand All @@ -42,6 +42,23 @@ aliases:
circleci step halt
fi;

- &test_package_version_for_alpha_tag_break_true
run:
name: Tagged as Alpha version if True Stop Flow
command: |
PACKAGE_VERSION=$(cat package.json \
| grep version \
| head -1 \
| awk -F: '{ print $2 }' \
| sed 's/[",]//g');
if [[ $PACKAGE_VERSION =~ "-alpha" ]];
then
echo true
circleci step halt
else
echo false
fi;

- &restore-build-flag
restore_cache:
keys:
Expand Down Expand Up @@ -107,6 +124,7 @@ commands:
path: ~/web3-onboard-monorepo
- *restore-build-flag
- *test-build-flag
- *test_package_version_for_alpha_tag_break_true
# Services and packages in a Workspace don't get their own
# yarn.lock so we need to generate them manually.
- *generate-lock-file
Expand All @@ -130,7 +148,7 @@ commands:
path: ~/web3-onboard-monorepo
- *restore-build-flag
- *test-build-flag
- *test_package_version_for_alpha_tag
- *test_package_version_for_alpha_tag_break_false
# Services and packages in a Workspace don't get their own
# yarn.lock so we need to generate them manually.
- *generate-lock-file
Expand Down
4 changes: 2 additions & 2 deletions packages/coinbase/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/coinbase",
"version": "2.0.2-alpha",
"version": "2.0.2-alpha.1",
"description": "Coinbase Wallet module for web3-onboard",
"module": "dist/index.js",
"browser": "dist/index.js",
Expand All @@ -20,7 +20,7 @@
"typescript": "^4.5.5"
},
"dependencies": {
"@web3-onboard/common": "^2.0.7",
"@web3-onboard/common": "^2.0.7-alpha.1",
"@coinbase/wallet-sdk": "^3.0.5"
}
}
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/common",
"version": "2.0.9-alpha",
"version": "2.0.9-alpha.1",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/core",
"version": "2.2.8",
"version": "2.2.8-alpha.1",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
Expand Down Expand Up @@ -41,7 +41,7 @@
"typescript": "^4.5.5"
},
"dependencies": {
"@web3-onboard/common": "^2.0.7",
"@web3-onboard/common": "^2.0.7-alpha.1",
"bowser": "^2.11.0",
"ethers": "5.5.3",
"eventemitter3": "^4.0.7",
Expand Down
4 changes: 2 additions & 2 deletions packages/fortmatic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/fortmatic",
"version": "2.0.2-alpha",
"version": "2.0.2-alpha.1",
"description": "Fortmatic module for web3-onboard",
"module": "dist/index.js",
"browser": "dist/index.js",
Expand All @@ -20,7 +20,7 @@
"typescript": "^4.5.5"
},
"dependencies": {
"@web3-onboard/common": "^2.0.7",
"@web3-onboard/common": "^2.0.7-alpha.1",
"fortmatic": "^2.2.1"
}
}
4 changes: 2 additions & 2 deletions packages/gnosis/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/gnosis",
"version": "2.0.1-alpha",
"version": "2.0.1-alpha.1",
"description": "Gnosis module for web3-onboard",
"module": "dist/index.js",
"browser": "dist/index.js",
Expand All @@ -21,7 +21,7 @@
"typescript": "^4.5.5"
},
"dependencies": {
"@web3-onboard/common": "^2.0.7",
"@web3-onboard/common": "^2.0.7-alpha.1",
"@gnosis.pm/safe-apps-provider": "^0.9.2",
"@gnosis.pm/safe-apps-sdk": "^6.1.1"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/injected/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/injected-wallets",
"version": "2.0.6-alpha",
"version": "2.0.6-alpha.1",
"description": "Injected wallets module for web3-onboard",
"module": "dist/index.js",
"browser": "dist/index.js",
Expand All @@ -25,7 +25,7 @@
"window": "^4.2.7"
},
"dependencies": {
"@web3-onboard/common": "^2.0.7",
"@web3-onboard/common": "^2.0.7-alpha.1",
"joi": "^17.4.2",
"lodash.uniqby": "^4.7.0"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/keepkey/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/keepkey",
"version": "2.0.3-alpha",
"version": "2.0.3-alpha.1",
"description": "KeepKey module for web3-onboard",
"module": "dist/index.js",
"browser": "dist/index.js",
Expand All @@ -24,7 +24,7 @@
"typescript": "^4.5.5"
},
"dependencies": {
"@web3-onboard/common": "^2.0.7",
"@web3-onboard/common": "^2.0.7-alpha.1",
"@ethersproject/providers": "^5.5.0",
"@shapeshiftoss/hdwallet-core": "^1.15.2",
"@shapeshiftoss/hdwallet-keepkey-webusb": "^1.15.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/keystone/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/keystone",
"version": "2.0.3-alpha",
"version": "2.0.3-alpha.1",
"description": "Keystone module for web3-onboard",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
Expand All @@ -18,7 +18,7 @@
"typescript": "^4.5.5"
},
"dependencies": {
"@web3-onboard/common": "^2.0.7",
"@web3-onboard/common": "^2.0.7-alpha.1",
"@ethereumjs/tx": "^3.4.0",
"@ethersproject/providers": "^5.5.0",
"@keystonehq/eth-keyring": "^0.11.2-alpha.2"
Expand Down
4 changes: 2 additions & 2 deletions packages/ledger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/ledger",
"version": "2.0.4-alpha",
"version": "2.0.4-alpha.1",
"description": "Ledger module for web3-onboard",
"module": "dist/index.js",
"browser": "dist/index.js",
Expand All @@ -21,7 +21,7 @@
"typescript": "^4.5.5"
},
"dependencies": {
"@web3-onboard/common": "^2.0.7",
"@web3-onboard/common": "^2.0.7-alpha.1",
"@ethereumjs/tx": "^3.4.0",
"@ethersproject/providers": "^5.5.0",
"@ledgerhq/hw-app-eth": "^6.19.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/magic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/magic",
"version": "2.0.3-alpha",
"version": "2.0.3-alpha.1",
"description": "Magic module for Onboard.js",
"scripts": {
"build": "rollup -c",
Expand Down Expand Up @@ -42,7 +42,7 @@
"typescript": "^4.5.5"
},
"dependencies": {
"@web3-onboard/common": "^2.0.7",
"@web3-onboard/common": "^2.0.7-alpha.1",
"magic-sdk": "^8.1.0",
"rxjs": "^7.5.2",
"joi": "^17.4.2"
Expand Down
4 changes: 2 additions & 2 deletions packages/mew/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/mew",
"version": "2.0.0-alpha",
"version": "2.0.0-alpha.1",
"description": "MEW module for web3-onboard",
"module": "dist/index.js",
"browser": "dist/index.js",
Expand All @@ -23,7 +23,7 @@
"@myetherwallet/mewconnect-web-client": "^2.2.0-beta.14"
},
"dependencies": {
"@web3-onboard/common": "^2.0.7",
"@web3-onboard/common": "^2.0.7-alpha.1",
"rxjs": "^7.5.2"
}
}
4 changes: 2 additions & 2 deletions packages/portis/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/portis",
"version": "2.0.0-alpha",
"version": "2.0.0-alpha.1",
"description": "Portis module for web3-onboard",
"module": "dist/index.js",
"browser": "dist/index.js",
Expand All @@ -20,7 +20,7 @@
"typescript": "^4.5.5"
},
"dependencies": {
"@web3-onboard/common": "^2.0.7",
"@web3-onboard/common": "^2.0.7-alpha.1",
"@portis/web3": "^4.0.6"
}
}
6 changes: 3 additions & 3 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/react",
"version": "2.1.6-alpha",
"version": "2.1.6-alpha.1",
"description": "Collection of React Hooks for web3-onboard",
"module": "dist/index.js",
"browser": "dist/index.js",
Expand All @@ -21,8 +21,8 @@
"typescript": "^4.5.5"
},
"dependencies": {
"@web3-onboard/common": "^2.0.7",
"@web3-onboard/core": "^2.2.7"
"@web3-onboard/common": "^2.0.7-alpha.1",
"@web3-onboard/core": "^2.2.7-alpha.1"
},
"peerDependencies": {
"react": "^17.0.2"
Expand Down
4 changes: 2 additions & 2 deletions packages/torus/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/torus",
"version": "2.0.1-alpha",
"version": "2.0.1-alpha.1",
"description": "Torus module for web3-onboard",
"module": "dist/index.js",
"browser": "dist/index.js",
Expand All @@ -20,7 +20,7 @@
"typescript": "^4.5.5"
},
"dependencies": {
"@web3-onboard/common": "^2.0.7",
"@web3-onboard/common": "^2.0.7-alpha.1",
"@toruslabs/torus-embed": "^1.18.3"
}
}
4 changes: 2 additions & 2 deletions packages/trezor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/trezor",
"version": "2.0.5-alpha",
"version": "2.0.5-alpha.1",
"description": "Trezor module for web3-onboard",
"module": "dist/index.js",
"browser": "dist/index.js",
Expand All @@ -20,7 +20,7 @@
"typescript": "^4.5.5"
},
"dependencies": {
"@web3-onboard/common": "^2.0.7",
"@web3-onboard/common": "^2.0.7-alpha.1",
"@ethereumjs/tx": "^3.4.0",
"@ethersproject/providers": "^5.5.0",
"buffer": "^6.0.3",
Expand Down
4 changes: 2 additions & 2 deletions packages/walletconnect/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@web3-onboard/walletconnect",
"version": "2.0.1-alpha",
"version": "2.0.1-alpha.1",
"description": "WalletConnect module for web3-onboard",
"module": "dist/index.js",
"browser": "dist/index.js",
Expand All @@ -21,7 +21,7 @@
},
"dependencies": {
"@ethersproject/providers": "^5.5.0",
"@web3-onboard/common": "^2.0.7",
"@web3-onboard/common": "^2.0.7-alpha.1",
"@walletconnect/client": "^1.7.1",
"@walletconnect/qrcode-modal": "^1.7.1",
"rxjs": "^7.5.2"
Expand Down