From 8036009af44d6e59ac2b79fc5e29f4ecf1e19f95 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Sun, 18 Nov 2018 01:52:53 +0330 Subject: [PATCH] [skip ci] improve lerna config --- .circleci/config.yml | 2 +- lerna.json | 3 +-- package.json | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) 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",