Skip to content

Commit

Permalink
tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
prevostc committed Dec 21, 2024
1 parent e256a66 commit dbdad88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bin/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ if [ -z "$version" ]; then
exit_help
fi
# allow only x.y.z and x.y.z-n versions
if [[ ! $version =~ ^[0-9]+\.[0-9]+\.[0-9]+(-[0-9]+)?$ ]]; then
if [[ ! $version =~ ^[0-9]+\.[0-9]+\.[0-9]+(-[a-z0-9]+)?$ ]]; then
echo "invalid version ""$version"""
exit_help
fi
Expand Down
7 changes: 1 addition & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@
"test:unit": "echo 'No unit tests defined'",
"test:lint": "prettier . --check",
"test:config": "ts-node --project tsconfig.scripts.json ./bin/check-config.ts",
"infra:start": "docker compose up -d",
"infra:stop": "docker compose down",
"create-local": "graph create beefyfinance/local --node http://127.0.0.1:8020",
"deploy-local": "graph deploy beefyfinance/local --node http://127.0.0.1:8020 --ipfs http://localhost:5001",
"remove-local": "graph remove beefyfinance/local --node http://127.0.0.1:8020",
"configure": "./bin/prepare.sh "
},
"main": "./bin/index.js",
Expand All @@ -40,5 +35,5 @@
"lint-staged": {
"*.--check": "prettier --write"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
"packageManager": "[email protected]"
}

0 comments on commit dbdad88

Please sign in to comment.