@mintlify/scraping 4.0.202 → 4.0.203

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": "@mintlify/scraping",
3
- "version": "4.0.202",
3
+ "version": "4.0.203",
4
4
  "description": "Scrape documentation frameworks to Mintlify docs",
5
5
  "engines": {
6
6
  "node": ">=18.0.0"
@@ -38,7 +38,7 @@
38
38
  "format:check": "prettier . --check"
39
39
  },
40
40
  "dependencies": {
41
- "@mintlify/common": "1.0.349",
41
+ "@mintlify/common": "1.0.350",
42
42
  "@mintlify/openapi-parser": "^0.0.7",
43
43
  "fs-extra": "^11.1.1",
44
44
  "hast-util-to-mdast": "^10.1.0",
@@ -78,5 +78,5 @@
78
78
  "typescript": "^5.5.3",
79
79
  "vitest": "^2.0.4"
80
80
  },
81
- "gitHead": "1d376a0f82153b39269c4bc8ec05a94b4e1bfd83"
81
+ "gitHead": "2bfdc262b8bbc35d1c7e2f591786d09a59057c87"
82
82
  }
@@ -88,9 +88,7 @@ export function processOpenApiPath<N, DN>(
88
88
  findNavGroup: (nav: any, groupName?: string) => any
89
89
  ) {
90
90
  const openApiFilePathFromRoot = options.openApiFilePath
91
- ? options.openApiFilePath.startsWith('https://')
92
- ? options.openApiFilePath
93
- : optionallyAddLeadingSlash(options.openApiFilePath)
91
+ ? optionallyAddLeadingSlash(options.openApiFilePath)
94
92
  : undefined;
95
93
 
96
94
  Object.values(OpenAPIV3.HttpMethods).forEach((method) => {