@kenkaiiii/gg-pixel 4.3.89 → 4.3.90

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1097,6 +1097,11 @@ function wireElectron({ projectRoot, pkg, projectKey, ingestUrl }) {
1097
1097
  "renderer.ts",
1098
1098
  "renderer.tsx",
1099
1099
  "renderer.js",
1100
+ // `src/renderer.{ts,tsx,js}` is the convention used by multi-window
1101
+ // Electron apps that keep all renderer entries in src/.
1102
+ "src/renderer.ts",
1103
+ "src/renderer.tsx",
1104
+ "src/renderer.js",
1100
1105
  "src/index.tsx",
1101
1106
  "src/index.jsx",
1102
1107
  "src/main.tsx",
@@ -1152,7 +1157,7 @@ function resolveMainEntryFromPkg(projectRoot, pkg) {
1152
1157
  "electron/main.ts"
1153
1158
  ]);
1154
1159
  }
1155
- var RENDERER_HTML_DIRS = ["ui", "renderer", "src/renderer", "public", "static"];
1160
+ var RENDERER_HTML_DIRS = ["ui", "renderer", "src/renderer", "src", "public", "static"];
1156
1161
  function findRendererHtmlFiles(projectRoot) {
1157
1162
  for (const dir of RENDERER_HTML_DIRS) {
1158
1163
  const root = join2(projectRoot, dir);