onreza-release 2.1.0 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,6 @@ export declare class GitVerseReleaseProvider implements ReleaseProvider {
8
8
  private client;
9
9
  private repoInfo;
10
10
  private retryFn?;
11
- private token;
12
11
  readonly platform: GitPlatform;
13
12
  readonly assetLimits: AssetLimits;
14
13
  constructor(token: string, repoInfo: ProviderRepoInfo, retryFn?: RetryFunction);
package/dist/types.d.ts CHANGED
@@ -871,6 +871,11 @@ export interface BinaryCliOptions {
871
871
  * Подробный вывод
872
872
  */
873
873
  verbose?: boolean;
874
+ /**
875
+ * Команда для публикации npm пакета после генерации файлов.
876
+ * Например: "npm publish", "bun publish", "npm publish --access public"
877
+ */
878
+ npmPublish?: string;
874
879
  }
875
880
  /**
876
881
  * Лимиты GitVerse для артефактов релиза
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "onreza-release",
3
- "version": "2.1.0",
3
+ "version": "2.2.0",
4
4
  "description": "Conventional Commits release automation tool with GitVerse and GitHub support",
5
5
  "keywords": [
6
6
  "release",
@@ -40,11 +40,7 @@
40
40
  "bin": {
41
41
  "onreza-release": "./dist/cli.js"
42
42
  },
43
- "files": [
44
- "dist",
45
- "schema.json",
46
- "README.md"
47
- ],
43
+ "files": ["dist", "schema.json", "README.md"],
48
44
  "scripts": {
49
45
  "build": "bun build.ts",
50
46
  "dev": "bun build.ts --watch",
@@ -55,7 +51,7 @@
55
51
  "typecheck": "tsc --noEmit"
56
52
  },
57
53
  "dependencies": {
58
- "@onreza/gitverse-sdk": ">=1.0.2",
54
+ "@onreza/gitverse-sdk": "^1.0.4",
59
55
  "jsonc-parser": "^3.3.1",
60
56
  "tar": "^7.5.3"
61
57
  },