fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: fix versioned clients and plugins

Lubos 598869e5 f77783f1

+43 -25
+33 -23
patches/vitepress.patch
··· 1 1 diff --git a/dist/client/shared.js b/dist/client/shared.js 2 - index f65eb22fe2b0dfeb9bd823c00c737f5035f2c891..16a45edcf11b71881b31f1203add291a2c447d22 100644 2 + index f65eb22fe2b0dfeb9bd823c00c737f5035f2c891..8a4f602c8e8d029428bc5bcc0104e84cb30f4ae6 100644 3 3 --- a/dist/client/shared.js 4 4 +++ b/dist/client/shared.js 5 - @@ -16,6 +16,7 @@ export const notFoundPageData = { 5 + @@ -16,16 +16,32 @@ export const notFoundPageData = { 6 6 lastUpdated: 0, 7 7 isNotFound: true 8 8 }; ··· 10 10 export function isActive(currentPath, matchPath, asRegex = false) { 11 11 if (matchPath === undefined) { 12 12 return false; 13 - @@ -24,8 +25,19 @@ export function isActive(currentPath, matchPath, asRegex = false) { 13 + } 14 + currentPath = normalize(`/${currentPath}`); 15 + + console.log(currentPath, matchPath) 16 + + if (true) { 17 + + return true; 18 + + } 14 19 if (asRegex) { 15 20 return new RegExp(matchPath).test(currentPath); 16 21 } ··· 33 38 const hashMatch = matchPath.match(HASH_RE); 34 39 if (hashMatch) { 35 40 diff --git a/dist/node/chunk-CwUP9ZhX.js b/dist/node/chunk-CwUP9ZhX.js 36 - index e8b4954d00f247fb852096bb1f8f077fcfc1f93f..8db594d1bdaac76359656a95ac96cd98161b1062 100644 41 + index e8b4954d00f247fb852096bb1f8f077fcfc1f93f..4e55f584e2d71b52cf937585c49b1de52577a604 100644 37 42 --- a/dist/node/chunk-CwUP9ZhX.js 38 43 +++ b/dist/node/chunk-CwUP9ZhX.js 39 44 @@ -2053,7 +2053,7 @@ function requireBrowser () { ··· 105 110 } (dist$1)); 106 111 return dist$1; 107 112 } 108 - @@ -18267,6 +18267,7 @@ const notFoundPageData = { 113 + @@ -18267,16 +18267,30 @@ const notFoundPageData = { 109 114 lastUpdated: 0, 110 115 isNotFound: true 111 116 }; ··· 113 118 function isActive(currentPath, matchPath, asRegex = false) { 114 119 if (matchPath === void 0) { 115 120 return false; 116 - @@ -18275,8 +18276,17 @@ function isActive(currentPath, matchPath, asRegex = false) { 121 + } 122 + currentPath = normalize$1(`/${currentPath}`); 123 + + console.log(currentPath, matchPath) 124 + + if (true) { 125 + + return true; 126 + + } 117 127 if (asRegex) { 118 128 return new RegExp(matchPath).test(currentPath); 119 129 } ··· 133 143 } 134 144 const hashMatch = matchPath.match(HASH_RE); 135 145 if (hashMatch) { 136 - @@ -23631,7 +23641,7 @@ function requireEngines () { 146 + @@ -23631,7 +23645,7 @@ function requireEngines () { 137 147 stringify: function() { 138 148 throw new Error('stringifying JavaScript is not supported'); 139 149 } ··· 142 152 } (engines)); 143 153 return engines.exports; 144 154 } 145 - @@ -23731,7 +23741,7 @@ function requireUtils$2 () { 155 + @@ -23731,7 +23745,7 @@ function requireUtils$2 () { 146 156 exports.startsWith = function(str, substr, len) { 147 157 if (typeof len !== 'number') len = substr.length; 148 158 return str.slice(0, len) === substr; ··· 151 161 } (utils$3)); 152 162 return utils$3; 153 163 } 154 - @@ -25043,7 +25053,7 @@ const decodeMap = new Map([ 164 + @@ -25043,7 +25057,7 @@ const decodeMap = new Map([ 155 165 /** 156 166 * Polyfill for `String.fromCodePoint`. It is used to create a string from a Unicode code point. 157 167 */ ··· 160 170 // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition, node/no-unsupported-features/es-builtins 161 171 (_a = String.fromCodePoint) !== null && _a !== void 0 ? _a : function (codePoint) { 162 172 let output = ""; 163 - @@ -25135,7 +25145,7 @@ var DecodingMode; 173 + @@ -25135,7 +25149,7 @@ var DecodingMode; 164 174 class EntityDecoder { 165 175 constructor( 166 176 /** The tree used to decode entities. */ ··· 169 179 /** 170 180 * The function that is called when a codepoint is decoded. 171 181 * 172 - @@ -25145,7 +25155,7 @@ class EntityDecoder { 182 + @@ -25145,7 +25159,7 @@ class EntityDecoder { 173 183 * @param codepoint The decoded codepoint. 174 184 * @param consumed The number of bytes consumed by the decoder. 175 185 */ ··· 178 188 /** An object that is used to produce errors. */ 179 189 errors) { 180 190 this.decodeTree = decodeTree; 181 - @@ -25458,7 +25468,7 @@ function getDecoder(decodeTree) { 191 + @@ -25458,7 +25472,7 @@ function getDecoder(decodeTree) { 182 192 while ((offset = str.indexOf("&", offset)) >= 0) { 183 193 ret += str.slice(lastIndex, offset); 184 194 decoder.startEntity(decodeMode); ··· 187 197 // Skip the "&" 188 198 offset + 1); 189 199 if (len < 0) { 190 - @@ -38931,7 +38941,7 @@ class SignalExit extends SignalExitBase { 200 + @@ -38931,7 +38945,7 @@ class SignalExit extends SignalExitBase { 191 201 const process$1 = globalThis.process; 192 202 // wrap so that we call the method on the actual handler, without 193 203 // exporting it directly. ··· 196 206 /** 197 207 * Called when the process is exiting, whether via signal, explicit 198 208 * exit, or running out of stuff to do. 199 - @@ -41070,7 +41080,7 @@ function requireEastasianwidth () { 209 + @@ -41070,7 +41084,7 @@ function requireEastasianwidth () { 200 210 eawLen += charLen; 201 211 } 202 212 return result; ··· 205 215 } (eastasianwidth)); 206 216 return eastasianwidth.exports; 207 217 } 208 - @@ -42826,7 +42836,7 @@ function requireTypes () { 218 + @@ -42826,7 +42840,7 @@ function requireTypes () { 209 219 IndexTagNames["sitemapindex"] = "sitemapindex"; 210 220 IndexTagNames["loc"] = "loc"; 211 221 IndexTagNames["lastmod"] = "lastmod"; ··· 214 224 } (types)); 215 225 return types; 216 226 } 217 - @@ -42840,7 +42850,7 @@ function requireSitemapXml () { 227 + @@ -42840,7 +42854,7 @@ function requireSitemapXml () { 218 228 hasRequiredSitemapXml = 1; 219 229 Object.defineProperty(sitemapXml, "__esModule", { value: true }); 220 230 sitemapXml.element = sitemapXml.ctag = sitemapXml.otag = sitemapXml.text = void 0; ··· 223 233 // eslint-disable-next-line no-control-regex 224 234 /[\u0000-\u0008\u000B\u000C\u000E-\u001F\u007F-\u0084\u0086-\u009F\uD800-\uDFFF\uFDD0-\uFDDF\u{1FFFE}-\u{1FFFF}\u{2FFFE}-\u{2FFFF}\u{3FFFE}-\u{3FFFF}\u{4FFFE}-\u{4FFFF}\u{5FFFE}-\u{5FFFF}\u{6FFFE}-\u{6FFFF}\u{7FFFE}-\u{7FFFF}\u{8FFFE}-\u{8FFFF}\u{9FFFE}-\u{9FFFF}\u{AFFFE}-\u{AFFFF}\u{BFFFE}-\u{BFFFF}\u{CFFFE}-\u{CFFFF}\u{DFFFE}-\u{DFFFF}\u{EFFFE}-\u{EFFFF}\u{FFFFE}-\u{FFFFF}\u{10FFFE}-\u{10FFFF}]/gu; 225 235 const amp = /&/g; 226 - @@ -43586,7 +43596,7 @@ function requireSitemapStream () { 236 + @@ -43586,7 +43600,7 @@ function requireSitemapStream () { 227 237 }); 228 238 }); 229 239 } ··· 232 242 } (sitemapStream)); 233 243 return sitemapStream; 234 244 } 235 - @@ -43809,7 +43819,7 @@ function requireSitemapIndexStream () { 245 + @@ -43809,7 +43823,7 @@ function requireSitemapIndexStream () { 236 246 }); 237 247 } 238 248 } ··· 241 251 } (sitemapIndexStream)); 242 252 return sitemapIndexStream; 243 253 } 244 - @@ -45470,7 +45480,7 @@ function requireSax () { 254 + @@ -45470,7 +45484,7 @@ function requireSax () { 245 255 } 246 256 }()); 247 257 } ··· 250 260 } (sax)); 251 261 return sax; 252 262 } 253 - @@ -46277,7 +46287,7 @@ function requireSitemapSimple () { 263 + @@ -46277,7 +46291,7 @@ function requireSitemapSimple () { 254 264 } 255 265 }; 256 266 exports.simpleSitemapAndIndex = simpleSitemapAndIndex; ··· 259 269 } (sitemapSimple)); 260 270 return sitemapSimple; 261 271 } 262 - @@ -46333,7 +46343,7 @@ function requireDist () { 272 + @@ -46333,7 +46347,7 @@ function requireDist () { 263 273 Object.defineProperty(exports, "XMLToSitemapIndexStream", { enumerable: true, get: function () { return sitemap_index_parser_1.XMLToSitemapIndexStream; } }); 264 274 Object.defineProperty(exports, "IndexObjectStreamToJSON", { enumerable: true, get: function () { return sitemap_index_parser_1.IndexObjectStreamToJSON; } }); 265 275 var sitemap_simple_1 = requireSitemapSimple(); ··· 268 278 } (dist)); 269 279 return dist; 270 280 } 271 - @@ -48930,7 +48940,7 @@ function requireLodash_template () { 281 + @@ -48930,7 +48944,7 @@ function requireLodash_template () { 272 282 return false; 273 283 } 274 284 ··· 277 287 } (lodash_template, lodash_template.exports)); 278 288 return lodash_template.exports; 279 289 } 280 - @@ -49165,7 +49175,7 @@ function requirePostcssPrefixSelector () { 290 + @@ -49165,7 +49179,7 @@ function requirePostcssPrefixSelector () { 281 291 282 292 return { 283 293 postcssPlugin: 'postcss-prefix-selector',
+7 -2
pnpm-lock.yaml
··· 4 4 autoInstallPeers: true 5 5 excludeLinksFromLockfile: false 6 6 7 + patchedDependencies: 8 + vitepress: 9 + hash: a63176ed367ccd40779c6380946bff887569865d354270b877b28d6243e261dc 10 + path: patches/vitepress.patch 11 + 7 12 importers: 8 13 9 14 .: ··· 104 109 version: 0.33.5 105 110 vitepress: 106 111 specifier: 2.0.0-alpha.11 107 - version: 2.0.0-alpha.11(@types/node@22.10.5)(axios@1.8.2)(change-case@5.4.4)(jiti@2.4.2)(less@4.2.2)(postcss@8.5.6)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(yaml@2.8.0) 112 + version: 2.0.0-alpha.11(patch_hash=a63176ed367ccd40779c6380946bff887569865d354270b877b28d6243e261dc)(@types/node@22.10.5)(axios@1.8.2)(change-case@5.4.4)(jiti@2.4.2)(less@4.2.2)(postcss@8.5.6)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(yaml@2.8.0) 108 113 vitepress-plugin-llms: 109 114 specifier: 1.7.3 110 115 version: 1.7.3 ··· 25981 25986 - '@75lb/nature' 25982 25987 - supports-color 25983 25988 25984 - vitepress@2.0.0-alpha.11(@types/node@22.10.5)(axios@1.8.2)(change-case@5.4.4)(jiti@2.4.2)(less@4.2.2)(postcss@8.5.6)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(yaml@2.8.0): 25989 + vitepress@2.0.0-alpha.11(patch_hash=a63176ed367ccd40779c6380946bff887569865d354270b877b28d6243e261dc)(@types/node@22.10.5)(axios@1.8.2)(change-case@5.4.4)(jiti@2.4.2)(less@4.2.2)(postcss@8.5.6)(sass@1.85.0)(terser@5.39.0)(typescript@5.8.3)(yaml@2.8.0): 25985 25990 dependencies: 25986 25991 '@docsearch/css': 4.0.0-beta.7 25987 25992 '@docsearch/js': 4.0.0-beta.7
+3
pnpm-workspace.yaml
··· 2 2 - docs 3 3 - examples/**/* 4 4 - packages/**/* 5 + 6 + patchedDependencies: 7 + vitepress: patches/vitepress.patch