repository-provider-test-support 3.1.1 → 3.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repository-provider-test-support",
3
- "version": "3.1.1",
3
+ "version": "3.1.2",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
package/src/util.mjs CHANGED
@@ -1,4 +1,7 @@
1
- import { Repository } from "repository-provider";
1
+
2
+ /**
3
+ * @typedef {import('repository-provider').Repository} Repository
4
+ */
2
5
 
3
6
  /**
4
7
  * find a new branch name for a given pattern
package/types/util.d.mts CHANGED
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @typedef {import('repository-provider').Repository} Repository
3
+ */
1
4
  /**
2
5
  * find a new branch name for a given pattern
3
6
  * '*' will be replaced by a number
@@ -6,4 +9,4 @@
6
9
  * @param {string} pattern
7
10
  */
8
11
  export function generateBranchName(repository: Repository, pattern: string): Promise<string>;
9
- import { Repository } from "repository-provider";
12
+ export type Repository = import('repository-provider').Repository;