From 5fd5de1bfdc509f6d9d51849c28f09a9a2b573ef Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Tue, 1 Sep 2020 18:46:10 +0200 Subject: [PATCH] build: fix version in dist files [skip ci] --- scripts/release.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/release.sh b/scripts/release.sh index 7a973853..b72dab8a 100644 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -13,13 +13,14 @@ then # clear existing ts cache rm -rf node_modules/.rts2_cache - yarn run build - yarn run build:dts - yarn run test:dts # generate the version so that the changelog can be generated too yarn version --no-git-tag-version --no-commit-hooks --new-version $VERSION + yarn run build + yarn run build:dts + yarn run test:dts + # changelog yarn run changelog yarn prettier --write CHANGELOG.md -- 2.47.2