repository-provider-test-support 2.1.26 → 2.2.1
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 +4 -4
- package/src/constants.mjs +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repository-provider-test-support",
|
|
3
|
-
"version": "2.1
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"lint:docs": "documentation lint ./src/**/*.mjs"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"content-entry": "^5.0.
|
|
31
|
+
"content-entry": "^5.0.2"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"ava": "^4.
|
|
34
|
+
"ava": "^4.3.0",
|
|
35
35
|
"c8": "^7.11.3",
|
|
36
36
|
"documentation": "^13.2.5",
|
|
37
|
-
"repository-provider": "^31.
|
|
37
|
+
"repository-provider": "^31.2.2",
|
|
38
38
|
"semantic-release": "^19.0.2"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
package/src/constants.mjs
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export const REPOSITORY_OWNER = "arlac77";
|
|
1
2
|
export const REPOSITORY_NAME = "arlac77/sync-test-repository";
|
|
2
3
|
export const REPOSITORY_NAME_GITHUB_HTTP = `https://github.com/${REPOSITORY_NAME}.git`;
|
|
3
4
|
export const REPOSITORY_NAME_GITHUB_GIT = `git@github.com:${REPOSITORY_NAME}.git`;
|