Skip to content

Commit

Permalink
fix: update_npmversion (#713)
Browse files Browse the repository at this point in the history
Signed-off-by: Carina Ursu <[email protected]>
  • Loading branch information
ursucarina authored Mar 7, 2023
1 parent fa789e2 commit 0c4e559
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,10 @@ test_unit_codecov:
generate_ssl:
./script/generate_ssl.sh

PLACEHOLDER_NPM := \"version\": \"0.0.0-develop\"
PLACEHOLDER_NPM := "version": "0.0.0-develop"

.PHONY: update_npmversion
update_npmversion:
grep "$(PLACEHOLDER_NPM)" "website/package.json"
sed -i "s/$(PLACEHOLDER_NPM)/\"version\": \"${VERSION}\"/g" "website/package.json"
echo "Updating client-app version to: $(VERSION)"
grep '$(PLACEHOLDER_NPM)' website/package.json
sed -i '' 's/$(PLACEHOLDER_NPM)/"version": "$(VERSION)"/g' website/package.json
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@flyteconsole/client-app",
"version": "2.0.0",
"version": "0.0.0-develop",
"description": "The web UI for the Flyte platform",
"private": true,
"repository": {
Expand Down

0 comments on commit 0c4e559

Please sign in to comment.