Skip to content

Commit

Permalink
descr
Browse files Browse the repository at this point in the history
  • Loading branch information
ceddybi committed Feb 1, 2024
1 parent d125552 commit 027170f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"name": "aij",
"productName": "AIJ",
"version": "0.0.1",
"description": "My Electron application description",
"description": "AI Jobs",
"main": ".webpack/main",
"scripts": {
"start": "APP_DEV=true electron-forge start",
"package": "electron-forge package",
"make": "DEBUG=electron-osx-sign* electron-forge make --arch=x64 --platform=darwin",
"publish": "electron-forge publish --arch=x64 --platform=darwin",
"make": "DEBUG=electron-osx-sign* electron-forge make --arch=x64 --platform",
"publish": "electron-forge publish --arch=x64 --platform",
"lint": "eslint --ext .ts,.tsx ."
},
"keywords": [],
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const createWindow = (): void => {
mainWindow.loadURL(MAIN_WINDOW_WEBPACK_ENTRY);

// Open the DevTools.
if (isDev) mainWindow.webContents.openDevTools();
if (isDev) { mainWindow.webContents.openDevTools() };
};

// This method will be called when Electron has finished
Expand Down

0 comments on commit 027170f

Please sign in to comment.