Skip to content

Commit dbdad88

Browse files
committed
tasks
1 parent e256a66 commit dbdad88

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

bin/release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ if [ -z "$version" ]; then
7171
exit_help
7272
fi
7373
# allow only x.y.z and x.y.z-n versions
74-
if [[ ! $version =~ ^[0-9]+\.[0-9]+\.[0-9]+(-[0-9]+)?$ ]]; then
74+
if [[ ! $version =~ ^[0-9]+\.[0-9]+\.[0-9]+(-[a-z0-9]+)?$ ]]; then
7575
echo "invalid version ""$version"""
7676
exit_help
7777
fi

package.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@
1010
"test:unit": "echo 'No unit tests defined'",
1111
"test:lint": "prettier . --check",
1212
"test:config": "ts-node --project tsconfig.scripts.json ./bin/check-config.ts",
13-
"infra:start": "docker compose up -d",
14-
"infra:stop": "docker compose down",
15-
"create-local": "graph create beefyfinance/local --node http://127.0.0.1:8020",
16-
"deploy-local": "graph deploy beefyfinance/local --node http://127.0.0.1:8020 --ipfs http://localhost:5001",
17-
"remove-local": "graph remove beefyfinance/local --node http://127.0.0.1:8020",
1813
"configure": "./bin/prepare.sh "
1914
},
2015
"main": "./bin/index.js",
@@ -40,5 +35,5 @@
4035
"lint-staged": {
4136
"*.--check": "prettier --write"
4237
},
43-
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
38+
"packageManager": "yarn@1.22.22"
4439
}

0 commit comments

Comments
 (0)