Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Malton <sebastian@malton.name>
  • Loading branch information
Nokel81 committed Mar 11, 2022
1 parent e17ae01 commit 14f41cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/vars.ts
Expand Up @@ -78,7 +78,7 @@ export const helmBinaryPath = lazyInitialized(() => path.join(baseBinariesDir.ge
export const kubectlBinaryName = getBinaryName("kubectl");
export const kubectlBinaryPath = lazyInitialized(() => path.join(baseBinariesDir.get(), kubectlBinaryName));
export const staticFilesDirectory = path.resolve(
isDevelopment
!isProduction
? process.cwd()
: process.resourcesPath,
"static",
Expand Down
2 changes: 1 addition & 1 deletion webpack/get-typescript-loader.ts
Expand Up @@ -23,7 +23,7 @@ export default function getTypescriptLoader(options: Partial<TSLoaderOptions> =
loader: "esbuild-loader",
options: {
loader: "tsx",
target: "ES2019",
target: "ES2019", // supported by >= electron@14
implementation: esbuild,
},
};
Expand Down

0 comments on commit 14f41cd

Please sign in to comment.