Skip to content

Commit

Permalink
refactor(step-generation): remove dependency on components (#7755)
Browse files Browse the repository at this point in the history
* add missing shared-data dependency in package.json

Closes #7747
  • Loading branch information
IanLondon authored May 4, 2021
1 parent 7aa9034 commit 4221549
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions step-generation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"homepage": "https://github.com/Opentrons/opentrons",
"license": "Apache-2.0",
"dependencies": {
"@opentrons/shared-data": "4.3.0-beta.0",
"core-js": "3.2.1",
"immer": "5.1.0",
"lodash": "4.17.15"
Expand Down
6 changes: 3 additions & 3 deletions step-generation/src/types.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// @flow
import type { Mount } from '@opentrons/components'
import typeof {
MAGNETIC_MODULE_TYPE,
TEMPERATURE_MODULE_TYPE,
THERMOCYCLER_MODULE_TYPE,
} from '@opentrons/shared-data'
import type {
LabwareDefinition2,
ModuleRealType,
ModuleModel,
ModuleRealType,
PipetteMount,
PipetteNameSpecs,
} from '@opentrons/shared-data'
import type {
Expand All @@ -32,7 +32,7 @@ export type LabwareTemporalProperties = {|
|}

export type PipetteTemporalProperties = {|
mount: Mount,
mount: PipetteMount,
|}

export type MagneticModuleState = {|
Expand Down

0 comments on commit 4221549

Please sign in to comment.