From 6fdf38664a51aeff951080c85d38e06df307e39d Mon Sep 17 00:00:00 2001 From: Alexey Ryazanov Date: Mon, 31 Jul 2023 23:21:25 +0500 Subject: [PATCH] chore: sync minor version with npm --- .release-it.json | 6 ++++-- CHANGELOG.md | 27 +-------------------------- package.json | 5 +---- 3 files changed, 6 insertions(+), 32 deletions(-) diff --git a/.release-it.json b/.release-it.json index 05021e0..2541c10 100644 --- a/.release-it.json +++ b/.release-it.json @@ -1,12 +1,14 @@ { "git": { - "commitMessage": "chore(release): version ${version}" + "commitMessage": "chore(release): version ${version}", + "tagName": "v${version}" }, "github": { "release": true }, "npm": { - "publishPath": "./build" + "publishPath": "./build", + "publishArgs": ["--access=public"] }, "plugins": { "@release-it/conventional-changelog": { diff --git a/CHANGELOG.md b/CHANGELOG.md index 63164c0..34848fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,28 +1,3 @@ - - -## [2.5.6](https://github.com/Tinkoff/utils.js/compare/2.5.4...2.5.6) (2023-07-31) - - -### Bug Fixes - -* remove `files` property from package.json ([541ee12](https://github.com/Tinkoff/utils.js/commit/541ee12a41721534b120049f98aae178553a0edb)) - -## [2.5.4](https://github.com/Tinkoff/utils.js/compare/2.5.3...2.5.4) (2023-07-31) - - -### Bug Fixes - -* add files to publishing ([49c0b80](https://github.com/Tinkoff/utils.js/commit/49c0b80a35085a143f7d017b15b7657f5b0fbfd6)) - -## [2.5.3](https://github.com/Tinkoff/utils.js/compare/2.5.2...2.5.3) (2023-07-31) - - -### Bug Fixes - -* fix publishing files ([3c24d4b](https://github.com/Tinkoff/utils.js/commit/3c24d4b51a3cbd15fa135d56feeccffc0f32c633)) - -## 2.5.2 (2023-07-31) - ## 2.2.1 + add check into the utility isEqual for comparision of functions by reference (#63) @@ -61,4 +36,4 @@ ## 0.6.2 + Add changelog -+ Convert utils build with babel \ No newline at end of file ++ Convert utils build with babel diff --git a/package.json b/package.json index 95bb36f..73e285f 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "author": "Tinkoff team", "scripts": { "build": "tsc && babel ./ts_temp -d build", - "release": "release-it", + "release": "release-it --increment=2.6.1 -VV", "release:dry": "release-it --dry-run", "benchmark": "ts-node --project tsconfig.benchmark.json runBenchmark.ts", "prebenchmark": "npm install --no-save ts-node lodash ramda lazy.js underscore", @@ -26,9 +26,6 @@ ], "sideEffects": false, "license": "Apache-2.0", - "publishConfig": { - "access": "public" - }, "devDependencies": { "@babel/cli": "^7.0.0", "@babel/core": "^7.0.0",