diff --git a/Makefile b/Makefile index 34c272c5..815f9e91 100644 --- a/Makefile +++ b/Makefile @@ -53,8 +53,8 @@ notify: curl -X POST -H 'Content-type: application/json' --data '{"text":"'"[GOBAN] $$VERSION $$MSG"'"}' $(SLACK_WEBHOOK) publish_npm: build + make -C engine/ publish yarn publish ./ - cd engine/; yarn publish ./ upload_to_cdn: rm -Rf deployment-staging-area; diff --git a/engine/Makefile b/engine/Makefile index c626859f..90616a87 100644 --- a/engine/Makefile +++ b/engine/Makefile @@ -4,4 +4,7 @@ all: @echo "To publish use make [publish|publish-beta]" publish-beta: - yarn publish --no-git-tag-version --tag beta ./ \ No newline at end of file + yarn publish --no-git-tag-version --tag beta ./ + +publish: + yarn publish --no-git-tag-version ./ \ No newline at end of file diff --git a/engine/package.json b/engine/package.json index 31b3fd8c..2f92396f 100644 --- a/engine/package.json +++ b/engine/package.json @@ -1,6 +1,6 @@ { "name": "goban-engine", - "version": "0.8.1-beta.3", + "version": "0.8.1", "description": "", "main": "goban-engine.js", "types": "goban-engine.d.ts",