@tahminator/pipeline 1.0.0 → 1.0.2

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.
package/dist/gh/client.js CHANGED
@@ -18,7 +18,7 @@ export class GitHubClient {
18
18
  auth: token,
19
19
  });
20
20
  this.tagManager = new GitHubTagManager(this.client, this.isExplicitToken);
21
- this.outputManager = new GitHubOutputManager(this.client);
21
+ this.outputManager = new GitHubOutputManager();
22
22
  this.prManager = new GitHubPRManager(this.client);
23
23
  }
24
24
  createTag(...args) {
@@ -1,7 +1,5 @@
1
- import type { Octokit } from "@octokit/rest";
2
1
  export declare class GitHubOutputManager {
3
- private readonly client;
4
- constructor(client: Octokit);
2
+ constructor();
5
3
  /**
6
4
  * Write an output back to Github Actions in order to re-use / pass
7
5
  * data between steps, jobs, etc.
@@ -1,8 +1,5 @@
1
1
  export class GitHubOutputManager {
2
- client;
3
- constructor(client) {
4
- this.client = client;
5
- }
2
+ constructor() { }
6
3
  /**
7
4
  * Write an output back to Github Actions in order to re-use / pass
8
5
  * data between steps, jobs, etc.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tahminator/pipeline",
3
3
  "type": "module",
4
- "version": "1.0.0",
4
+ "version": "1.0.2",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",