d6bb9b40b0
* feat: add blinkUtils module with getPathForFile method This is designed to replace the File.path augmentation we currently have in place to allow apps to get the filesystem path for a file that blink has a representation of. File.path is non-standard and messes with certain websites, using a method like this is effectively 0-cost and removes one of the final deviations we have with web standards. * add error * refactor: update per PR feedback * chore: update patches * oops * chore: update patches * chore: update patches * feat: add blinkUtils module with getPathForFile method This is designed to replace the File.path augmentation we currently have in place to allow apps to get the filesystem path for a file that blink has a representation of. File.path is non-standard and messes with certain websites, using a method like this is effectively 0-cost and removes one of the final deviations we have with web standards. * add error * refactor: update per PR feedback * chore: update patches * oops * chore: update patches * chore: update patches * chore: update patches * fix: provide isolate to WebBlob::FromV8Value * chore: add tests * build: fix depshash mismatch on arm64 macOS --------- Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com>
9 lines
523 B
TypeScript
9 lines
523 B
TypeScript
// Renderer side modules, please sort alphabetically.
|
|
export const rendererModuleList: ElectronInternal.ModuleEntry[] = [
|
|
{ name: 'clipboard', loader: () => require('./clipboard') },
|
|
{ name: 'contextBridge', loader: () => require('./context-bridge') },
|
|
{ name: 'crashReporter', loader: () => require('./crash-reporter') },
|
|
{ name: 'ipcRenderer', loader: () => require('./ipc-renderer') },
|
|
{ name: 'webFrame', loader: () => require('./web-frame') },
|
|
{ name: 'webUtils', loader: () => require('./web-utils') }
|
|
];
|