Merlin Beutlberger
Merlin Beutlberger
I refrain from merging this since the archived documentation would appear in the normal search. Maybe we should build the legacy documentation separately in a different folder and just crosslink...
> As it's not expected to change, we might just build it once and then copy the folder into `docs/v1` during the build? That's a good idea 👍
Thank you for reaching out. I have a couple of questions to better understand your requirements. I'll outline them for each of your points below: **Re 1:** Are you only...
> It works but then it requires ui5.yaml configuration which impacts middleware's usability Could you elaborate a bit more on that? I guess some configuration needs to be in the...
Possible solutions include: 1. Use [`readdir(dirname)`](https://nodejs.org/api/fs.html#fs_fs_readdir_path_options_callback) and compare the result with the requested file name - Doesn't necessary catch case errors in the path leading up to that directory, like...
This is interesting. With our `v1.1.0` we upgraded `globby` from [`7.1.1`](https://github.com/sindresorhus/globby/tree/v7.1.1) to [`9.2.0`](https://github.com/sindresorhus/globby/tree/v9.2.0). With these updates, `globby` switched from using [`node-glob`](https://github.com/isaacs/node-glob) to [`fast-glob`](https://github.com/mrmlnc/fast-glob). Basically we tried to recreate the same...
So I did some tests with https://github.com/SAP/ui5-fs/pull/163. I have a test project which contains a nested application project. At some point I created a `node_modules` directory in that application project,...
> Is the `globby` API really that much more preferable and/or `fast-glob` really that much faster compared to the old version that the regression in functionality is justified? `fast-glob` is...
> Regarding symlinks in dependencies: while this is not yet the case, I do have plans to extend this build pipeline to generate UI5-style libraries as well as applications. When...
Bummer, I forgot you're using the API directly. Of course it will be exposed on that level! The normalizer does not make use of any globbing. I hope your project...