Skip to content

Commit

Permalink
Fix/error report spec (#2803)
Browse files Browse the repository at this point in the history
  • Loading branch information
niclim committed Mar 25, 2024
1 parent 824e540 commit 0042a70
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "openapi-workspaces",
"license": "MIT",
"private": true,
"version": "0.54.11",
"version": "0.54.12",
"workspaces": [
"projects/json-pointer-helpers",
"projects/openapi-io",
Expand Down
2 changes: 1 addition & 1 deletion projects/fastify-capture/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/fastify-capture",
"license": "MIT",
"packageManager": "yarn@4.1.1",
"version": "0.54.11",
"version": "0.54.12",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion projects/json-pointer-helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/json-pointer-helpers",
"license": "MIT",
"packageManager": "yarn@4.1.1",
"version": "0.54.11",
"version": "0.54.12",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion projects/openapi-io/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/openapi-io",
"license": "MIT",
"packageManager": "yarn@4.1.1",
"version": "0.54.11",
"version": "0.54.12",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion projects/openapi-utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/openapi-utilities",
"license": "MIT",
"packageManager": "yarn@4.1.1",
"version": "0.54.11",
"version": "0.54.12",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion projects/optic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/optic",
"license": "MIT",
"packageManager": "yarn@4.1.1",
"version": "0.54.11",
"version": "0.54.12",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down
3 changes: 3 additions & 0 deletions projects/optic/src/commands/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -766,6 +766,7 @@ export const getRunAction =
error: `Invalid specification: ${e}`,
path: specPath,
};
specReports.push(specReport);
reportSpec(specReport);
continue;
}
Expand All @@ -778,6 +779,7 @@ export const getRunAction =
error: `Failed to load specification from Optic: ${e}`,
path: specPath,
};
specReports.push(specReport);
reportSpec(specReport);
continue;
}
Expand All @@ -786,6 +788,7 @@ export const getRunAction =
error: `Could not load specification from Optic ${opticUrl}`,
path: specPath,
};
specReports.push(specReport);
reportSpec(specReport);
continue;
}
Expand Down
2 changes: 1 addition & 1 deletion projects/rulesets-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/rulesets-base",
"license": "MIT",
"packageManager": "yarn@4.1.1",
"version": "0.54.11",
"version": "0.54.12",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion projects/standard-rulesets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@useoptic/standard-rulesets",
"license": "MIT",
"packageManager": "yarn@4.1.1",
"version": "0.54.11",
"version": "0.54.12",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
Expand Down

0 comments on commit 0042a70

Please sign in to comment.