diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ca50e9..5ad2ef0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,3 +40,5 @@ jobs: run: yarn nx affected -t build --base=${{ env.NX_BASE }} --head=${{ env.NX_HEAD }} - name: Version affected packages run: yarn nx affected -t version --base=${{ env.NX_BASE }} --head=${{ env.NX_HEAD }} + - name: Changelog affected packages + run: yarn nx affected -t changelog --base=${{ env.NX_BASE }} --head=${{ env.NX_HEAD }} diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index 9955e42..9f0d4f8 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -36,7 +36,8 @@ }, "scripts": { "build": "rimraf dist && tsc", - "version": "yarn nx release version" + "version": "yarn nx release version", + "changelog": "yarn nx release changelog" }, "peerDependencies": { "eslint": ">=7.x", diff --git a/packages/jest-config/package.json b/packages/jest-config/package.json index ce1f240..e9aaaee 100644 --- a/packages/jest-config/package.json +++ b/packages/jest-config/package.json @@ -21,6 +21,7 @@ "scripts": { "build": "rimraf dist && tsc", "version": "yarn nx release version", + "changelog": "yarn nx release changelog", "lint": "eslint src/ --ext .ts,.tsx --max-warnings 0", "lint:fix": "eslint --fix src/ --ext .ts,.tsx --max-warnings 0", "test:watch": "jest --watch" diff --git a/packages/rest-client/package.json b/packages/rest-client/package.json index 64a4373..c658bb0 100644 --- a/packages/rest-client/package.json +++ b/packages/rest-client/package.json @@ -16,6 +16,7 @@ "scripts": { "build": "rimraf dist && tsc", "version": "yarn nx release version", + "changelog": "yarn nx release changelog", "lint": "eslint src/ --ext .ts,.tsx --max-warnings 0", "test:watch": "jest --watch" } diff --git a/packages/tsconfig/package.json b/packages/tsconfig/package.json index 9c31dfa..02abef0 100644 --- a/packages/tsconfig/package.json +++ b/packages/tsconfig/package.json @@ -13,6 +13,7 @@ "react-library.json" ], "scripts": { - "version": "yarn nx release version" + "version": "yarn nx release version", + "changelog": "yarn nx release changelog" } }