@mountainpass/problem-document 0.0.4 → 0.0.7
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/.gitattributes +1 -0
- package/.husky/pre-commit +1 -1
- package/.projenrc.ts +4 -0
- package/package.json +2 -3
- package/vscode/extensions.json +0 -6
package/.gitattributes
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
/.gitattributes linguist-generated
|
|
7
7
|
/.github/dependabot.yml linguist-generated
|
|
8
8
|
/.github/pull_request_template.md linguist-generated
|
|
9
|
+
/.github/workflows/auto-approve.yml linguist-generated
|
|
9
10
|
/.github/workflows/build.yml linguist-generated
|
|
10
11
|
/.github/workflows/pull-request-lint.yml linguist-generated
|
|
11
12
|
/.github/workflows/release.yml linguist-generated
|
package/.husky/pre-commit
CHANGED
package/.projenrc.ts
CHANGED
|
@@ -24,6 +24,10 @@ const project = new MountainPassTypeScriptProject({
|
|
|
24
24
|
// "eslint-plugin-security": "^1.4.0",
|
|
25
25
|
] /* Build dependencies for this module. */,
|
|
26
26
|
keywords: ["problem-details", "rfc7807"],
|
|
27
|
+
repositoryUrl: `https://github.com/mountain-pass/problem-document.git`,
|
|
28
|
+
author: "Mountain Pass",
|
|
29
|
+
authorAddress: "info@mountain-pass.com.au",
|
|
30
|
+
defaultReleaseBranch: "main",
|
|
27
31
|
});
|
|
28
32
|
|
|
29
33
|
project.addContributors("Tom Howard <tom@mountainpass.com.au>");
|
package/package.json
CHANGED
|
@@ -29,13 +29,12 @@
|
|
|
29
29
|
"author": {
|
|
30
30
|
"name": "Mountain Pass",
|
|
31
31
|
"email": "info@mountain-pass.com.au",
|
|
32
|
-
"url": "https://mountain-pass.com.au",
|
|
33
32
|
"organization": true
|
|
34
33
|
},
|
|
35
34
|
"devDependencies": {
|
|
36
35
|
"@commitlint/cli": "^16.2.4",
|
|
37
36
|
"@commitlint/config-conventional": "^16.2.4",
|
|
38
|
-
"@mountainpass/projen-typescript-library": "^0.
|
|
37
|
+
"@mountainpass/projen-typescript-library": "^0.1.8",
|
|
39
38
|
"@types/http-status-codes": "^1.2.0",
|
|
40
39
|
"@types/jest": "^27.4.1",
|
|
41
40
|
"@types/node": "^12",
|
|
@@ -74,7 +73,7 @@
|
|
|
74
73
|
"publishConfig": {
|
|
75
74
|
"access": "public"
|
|
76
75
|
},
|
|
77
|
-
"version": "0.0.
|
|
76
|
+
"version": "0.0.7",
|
|
78
77
|
"bugs": {
|
|
79
78
|
"url": "https://github.com/mountain-pass/problem-document/issues"
|
|
80
79
|
},
|