refactor: new project struct (#8199)

packages/frontend/web -> packages/frontend/apps/web
packages/frontend/mobile -> packages/frontend/apps/mobile
packages/frontend/electron -> packages/frontend/apps/electron
This commit is contained in:
EYHN
2024-09-12 07:42:57 +00:00
parent 7c4eab6cd3
commit cc5a6e6d40
291 changed files with 139 additions and 134 deletions

View File

@@ -0,0 +1,39 @@
import 'electron-updater'; // Prevent BaseUpdater is undefined.
import { randomBytes } from 'node:crypto';
import type { AllPublishOptions } from 'builder-util-runtime';
import { UUID } from 'builder-util-runtime';
import type { AppAdapter } from 'electron-updater/out/AppAdapter';
import type { DownloadUpdateOptions } from 'electron-updater/out/AppUpdater';
import type { InstallOptions } from 'electron-updater/out/BaseUpdater';
import { BaseUpdater } from 'electron-updater/out/BaseUpdater';
import { MockedHttpExecutor } from './http-executor';
/**
* For testing, like:
* https://github.com/electron-userland/electron-builder/blob/master/packages/electron-updater/src/MacUpdater.ts
*/
export class MockedUpdater extends BaseUpdater {
httpExecutor: MockedHttpExecutor;
constructor(options?: AllPublishOptions | null, app?: AppAdapter) {
super(options, app);
this.httpExecutor = new MockedHttpExecutor();
Object.assign(this, {
getOrCreateStagingUserId: () => {
const id = UUID.v5(randomBytes(4096), UUID.OID);
return id;
},
});
}
doInstall(_options: InstallOptions) {
return true;
}
doDownloadUpdate(_options: DownloadUpdateOptions): Promise<string[]> {
return Promise.resolve([]);
}
}