From 517926bac82d7565143cd0bdf93d0274301bceca Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Thu, 4 Apr 2024 07:41:24 +0300 Subject: [PATCH 1/2] fix: fix yarn fallback auth token --- .yarnrc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.yarnrc.yml b/.yarnrc.yml index be769a9..b2ab8b1 100644 --- a/.yarnrc.yml +++ b/.yarnrc.yml @@ -4,4 +4,4 @@ yarnPath: .yarn/releases/yarn-4.1.1.cjs npmPublishRegistry: "https://registry.npmjs.org" -npmAuthToken: ${NODE_AUTH_TOKEN || ""} +npmAuthToken: ${NODE_AUTH_TOKEN-fallback} -- 2.47.2 From 800a9beef48e9a79726afb8a070f66a6628a2c05 Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Thu, 4 Apr 2024 07:48:56 +0300 Subject: [PATCH 2/2] build: v0.3.1 --- CHANGELOG.md | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b6850f5..d5af59b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ # ksv741 React Scripts +### [0.3.1](https://github.com/ksv741/react-scripts/compare/v0.3.0...v0.3.1) (2024-04-04) + + +### 🛠️ Bug Fixes + +* fix yarn fallback auth token ([ea7ce25](https://github.com/ksv741/react-scripts/commit/ea7ce25f834e88b43e9bf22e8d6bde19b25da7ba)) + ## [0.3.0](https://github.com/ksv741/react-scripts/compare/v0.1.0...v0.3.0) (2024-04-04) diff --git a/package.json b/package.json index 1381428..32c9682 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ksv741-react-scripts", - "version": "0.3.0", + "version": "0.3.1", "description": "Webpack configuration for easy creating React applications", "main": "./dist/index.js", "types": "./dist/index.d.ts", -- 2.47.2