Expo
Expo
https://github.com/yyx990803/launch-editor/blob/5ad87f680410710e261f4acdaddecaa808312029/packages/launch-editor/editor-info/windows.js#L23-L24 https://github.com/yyx990803/launch-editor/blob/5ad87f680410710e261f4acdaddecaa808312029/packages/launch-editor/editor-info/linux.js#L18
afaik that is impossible; the `file:` protocol is handled by your browser, meaning you can't bind some node code to a file URL. you'd need to patch your browser, or...
ah i see - one way to implement this would be something like: ```ts const toFsPath = (path:string) => (new URL(path,'file:///')).pathname; ``` which works with both `file:///`'s (ie `toFsPath('file:///foo/bar/foo.js:12:34');`) aswell...
> Not a problem on windows??? More infos please! node version, os, etc... Encountered same issue on Windows 11 21H2 @ Node 17 - This appears to be due to...
Made a fork that fulfils those needs - https://github.com/YieldingExploiter/license-compatibility-checker It's CLI does not work atm, however you could write something to interact with it's API, or use [this action](https://github.com/YieldingExploiter/License-Action) ([Boilerplate](https://github.com/YieldingExploiter/License-Checker-Boilerplate))...