Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
koji committed Mar 5, 2024
1 parent ce38dfb commit ed2bd00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app-shell-odd/electron-builder.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
'use strict'
const { app } = require('electron')
import pkg from '../package.json'

module.exports = {
appId: 'com.opentrons.odd',
electronVersion: app.getVersion(),
electronVersion: JSON.stringify(pkg.devDependencies.electron),
npmRebuild: false,
files: [
'**/*',
Expand Down
4 changes: 2 additions & 2 deletions app-shell/electron-builder.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict'
const path = require('path')
const { versionForProject } = require('../scripts/git-version')
const { app } = require('electron')
const pkg = require('../package.json')

const {
OT_APP_DEPLOY_BUCKET,
Expand All @@ -26,7 +26,7 @@ const publishConfig =
module.exports = async () => ({
appId:
project === 'robot-stack' ? 'com.opentrons.app' : 'com.opentrons.appot3',
electronVersion: app.getVersion(),
electronVersion: JSON.stringify(pkg.devDependencies.electron),
npmRebuild: false,
releaseInfo: {
releaseNotesFile:
Expand Down

0 comments on commit ed2bd00

Please sign in to comment.