feat: switch to edge release channel
This commit is contained in:
parent
680d2d18ea
commit
1f7b8f417d
|
@ -24,6 +24,7 @@
|
||||||
"bin": {
|
"bin": {
|
||||||
"solana-localnet": "bin/localnet.sh"
|
"solana-localnet": "bin/localnet.sh"
|
||||||
},
|
},
|
||||||
|
"solana-channel": "edge",
|
||||||
"files": [
|
"files": [
|
||||||
"/bin",
|
"/bin",
|
||||||
"/doc",
|
"/doc",
|
||||||
|
@ -44,16 +45,16 @@
|
||||||
"test:watch": "cross-env NODE_ENV=test jest --watch --useStderr",
|
"test:watch": "cross-env NODE_ENV=test jest --watch --useStderr",
|
||||||
"test:cover": "cross-env NODE_ENV=test jest --coverage --useStderr",
|
"test:cover": "cross-env NODE_ENV=test jest --coverage --useStderr",
|
||||||
"codecov": "npm run test:cover && cat ./coverage/lcov.info | codecov",
|
"codecov": "npm run test:cover && cat ./coverage/lcov.info | codecov",
|
||||||
"fetch-bpf-sdk": "test -d bpf-sdk || curl http://solana-sdk.s3.amazonaws.com/0.10.1/bpf-sdk.tar.bz2 | tar jxv",
|
"fetch-bpf-sdk": "test -d bpf-sdk || curl http://solana-sdk.s3.amazonaws.com/$npm_package_solana_channel/bpf-sdk.tar.bz2 | tar jxv",
|
||||||
"flow": "flow stop; flow-typed install jest@22 && flow",
|
"flow": "flow stop; flow-typed install jest@22 && flow",
|
||||||
"flow:watch": "flow stop; watch 'flow' . --wait=1 --ignoreDirectoryPattern=/doc/",
|
"flow:watch": "flow stop; watch 'flow' . --wait=1 --ignoreDirectoryPattern=/doc/",
|
||||||
"flow:stop": "flow stop",
|
"flow:stop": "flow stop",
|
||||||
"lint": "npm run pretty && eslint .",
|
"lint": "npm run pretty && eslint .",
|
||||||
"lint:fix": "npm run lint -- --fix",
|
"lint:fix": "npm run lint -- --fix",
|
||||||
"lint:watch": "watch 'npm run lint:fix' . --wait=1 --ignoreDirectoryPattern=/doc/",
|
"lint:watch": "watch 'npm run lint:fix' . --wait=1 --ignoreDirectoryPattern=/doc/",
|
||||||
"localnet:up": "bin/localnet.sh up",
|
"localnet:up": "bin/localnet.sh up $npm_package_solana_channel",
|
||||||
"localnet:down": "bin/localnet.sh down",
|
"localnet:down": "bin/localnet.sh down",
|
||||||
"localnet:update": "bin/localnet.sh update",
|
"localnet:update": "bin/localnet.sh update $npm_package_solana_channel",
|
||||||
"localnet:logs": "bin/localnet.sh logs -f",
|
"localnet:logs": "bin/localnet.sh logs -f",
|
||||||
"ok": "npm run lint && npm run flow && npm run test && npm run doc",
|
"ok": "npm run lint && npm run flow && npm run test && npm run doc",
|
||||||
"pretty": "prettier --write '{,{examples,src,test}/**/}*.js'",
|
"pretty": "prettier --write '{,{examples,src,test}/**/}*.js'",
|
||||||
|
|
Loading…
Reference in New Issue