From 7fe82ad6c28a5a4dc93454cffd2432c2b9cffa25 Mon Sep 17 00:00:00 2001 From: Kunal Nagar <2741371+kunalnagar@users.noreply.github.com> Date: Sat, 10 Feb 2024 09:23:54 -0500 Subject: [PATCH] Updates --- .github/workflows/ci.yml | 2 ++ packages/eslint-config/package.json | 3 ++- packages/jest-config/package.json | 1 + packages/rest-client/package.json | 1 + packages/tsconfig/package.json | 3 ++- 5 files changed, 8 insertions(+), 2 deletions(-) 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" } }