Skip to content

Commit

Permalink
fix: esm import
Browse files Browse the repository at this point in the history
  • Loading branch information
KatoakDR committed Feb 18, 2024
1 parent 849c9d7 commit 596b674
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion electron/main/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ initializeDotenv();
initializeLogging();
initializeSentry();

import './app';
import './app.js';
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
"lint:fix": "yarn lint --fix",
"lint:staged": "lint-staged --concurrent 1",
"format": "yarn prettier:fix && yarn lint:fix",
"start": "yarn build && yarn sentry:sourcemaps && electron .",
"start:dev": "yarn build:dev && APP_ENV=development electron .",
"start": "yarn build && yarn sentry:sourcemaps && electron ./electron/build/main/index.js",
"start:dev": "yarn build:dev && APP_ENV=development electron ./electron/build/main/index.js",
"build:common": "yarn clean:common && tsc -p electron/common",
"build:main": "yarn clean:main && tsc -p electron/main",
"build:preload": "yarn clean:preload && tsc -p electron/preload && yarn prettier:fix electron/preload/**/*.d.ts",
Expand Down

0 comments on commit 596b674

Please sign in to comment.