diff --git a/.circleci/config.yml b/.circleci/config.yml index 7a7c4f74c4..64e3e1c093 100755 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -117,7 +117,7 @@ jobs: command: | echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc echo "//registry.yarnpkg.com/:_authToken=$NPM_TOKEN" >> ~/.npmrc - yarn release + yarn release --yes PACKAGE_SUFFIX=edge yarn build ./scripts/workspace-run npm publish diff --git a/lerna.json b/lerna.json index b6670fde37..87d1a91d7c 100644 --- a/lerna.json +++ b/lerna.json @@ -3,9 +3,8 @@ "npmClient": "yarn", "useWorkspaces": true, "conventionalCommits": true, - "yes": true, + "exact": true, "noPush": true, - "gitTagVersion": false, "packages": [ "packages/*", "distributions/*" diff --git a/package.json b/package.json index e99751a2db..2c49211d09 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "test:unit": "jest test/unit", "test:types": "tsc -p test/types", "postinstall": "lerna link && yarn dev", - "release": "lerna version --exact" + "release": "lerna version" }, "devDependencies": { "@babel/core": "^7.1.6",