Skip to content

Commit

Permalink
🐛 Fix cir. import
Browse files Browse the repository at this point in the history
  • Loading branch information
cermakjiri committed May 21, 2021
1 parent dafe8ca commit b647b7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"format": "prettier --config ./prettier.config.js --write 'packages/@ackee/*/src/**/*.ts' '*.{js,json}' --loglevel warn",
"release": "lerna publish --no-push",
"release:beta": "yarn release --dist-tag beta --no-push",
"prepare": "yarn build",
"prepare": "yarn lint && yarn circular-modules && yarn build",
"release:yalc": "yarn prepare && lerna exec -- yalc push --no-scripts",
"circular-modules": "lerna exec -- madge --circular src"
},
Expand Down Expand Up @@ -61,7 +61,7 @@
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "circular-modules"
"pre-push": "yarn circular-modules"
}
},
"lint-staged": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import loglevel from 'loglevel';
import type { GeneralConfig } from '../../../types';
import { resolverTypes } from '../../../modules/core';
import { resolverTypes } from '../constants';
import type { TAntonio } from '../models/Antonio';

export const defaultGeneralConfig: GeneralConfig = {
Expand Down

0 comments on commit b647b7f

Please sign in to comment.