Skip to content

Commit

Permalink
refactor(step-generation): fix and check circular dependencies (#7756)
Browse files Browse the repository at this point in the history
  • Loading branch information
IanLondon authored May 4, 2021
1 parent 60df556 commit d5acadd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ clean-ts:
.PHONY: circular-dependencies-js
circular-dependencies-js:
madge $(and $(CI),--no-spinner --no-color) --circular protocol-designer/src/index.js
madge $(and $(CI),--no-spinner --no-color) --circular step-generation/src/index.js
madge $(and $(CI),--no-spinner --no-color) --circular labware-library/src/index.tsx
madge $(and $(CI),--no-spinner --no-color) --circular app/src/index.js

Expand Down
2 changes: 1 addition & 1 deletion step-generation/src/robotStateSelectors.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @flow
import assert from 'assert'
// TODO: Ian 2019-04-18 move orderWells somewhere more general -- shared-data util?
import { orderWells } from './utils'
import { orderWells } from './utils/orderWells'
import min from 'lodash/min'
import sortBy from 'lodash/sortBy'
import {
Expand Down

0 comments on commit d5acadd

Please sign in to comment.