This repository was archived by the owner on Mar 5, 2025. It is now read-only.
File tree 4 files changed +1409
-1166
lines changed
4 files changed +1409
-1166
lines changed Original file line number Diff line number Diff line change
1
+ name : ' Release Canary'
2
+ on :
3
+ push :
4
+ branches :
5
+ - ' 4.x'
6
+
7
+ jobs :
8
+ release :
9
+ name : release
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v3
13
+ - uses : actions/setup-node@v3
14
+ with :
15
+ node-version : 16
16
+ cache : yarn
17
+ - run : yarn install --frozen-lockfile
18
+ - run : yarn build:web
19
+ - run : yarn publish:canary
20
+ env :
21
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
22
+
Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ Web3.js is a TypeScript implementation of the [Ethereum JSON RPC API](https://et
17
17
18
18
You can install the package either using [ NPM] ( https://www.npmjs.com/package/web3 ) or using [ Yarn] ( https://yarnpkg.com/package/web3 )
19
19
20
+ > If you wanna checkout latest bugfix or feature, use ` npm install web3@dev `
21
+
20
22
### Using NPM
21
23
22
24
``` bash
Original file line number Diff line number Diff line change 91
91
"test:blackbox:infura:ws" : " yarn pre-blackbox && ./scripts/verdaccio.sh startBackgroundAndPublish && lerna run test:blackbox:infura:ws --stream && yarn post-blackbox" ,
92
92
"prepare" : " husky install" ,
93
93
"postinstall" : " yarn build" ,
94
- "compile:contracts" : " node ./scripts/compile_contracts.js && yarn format && yarn lint:fix"
94
+ "compile:contracts" : " node ./scripts/compile_contracts.js && yarn format && yarn lint:fix" ,
95
+ "publish:canary" : " lerna publish --canary --dist-tag dev --graph-type all --force-publish \" *\" --no-verify-access --yes"
95
96
},
96
97
"devDependencies" : {
97
98
"@cypress/webpack-preprocessor" : " ^5.12.0" ,
111
112
"https-browserify" : " ^1.0.0" ,
112
113
"husky" : " ^8.0.1" ,
113
114
"jest" : " ^28.1.3" ,
114
- "lerna" : " ^5.1.8 " ,
115
+ "lerna" : " ^6.6.2 " ,
115
116
"lint-staged" : " ^13.0.3" ,
116
117
"npm-auth-to-token" : " ^1.0.0" ,
117
118
"prettier" : " ^2.7.1" ,
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments