Skip to content

Commit

Permalink
(fix) Fix various tooling issues in core
Browse files Browse the repository at this point in the history
  • Loading branch information
ibacher committed Jul 31, 2024
1 parent 29cbd63 commit 283e859
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
8 changes: 1 addition & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,5 @@
"@carbon/icons-react": "11.37.0",
"minipass": "3.3.5"
},
"packageManager": "[email protected]",
"dependencies": {
"@formatjs/intl-durationformat": "^0.2.4",
"@hookform/resolvers": "^3.6.0",
"react-hook-form": "^7.52.0",
"zod": "^3.23.8"
}
"packageManager": "[email protected]"
}
5 changes: 4 additions & 1 deletion packages/apps/esm-login-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@
},
"dependencies": {
"@carbon/react": "~1.37.0",
"lodash-es": "^4.17.21"
"@hookform/resolvers": "^3.6.0",
"lodash-es": "^4.17.21",
"react-hook-form": "^7.52.0",
"zod": "^3.23.8"
},
"peerDependencies": {
"@carbon/react": "1.x",
Expand Down
1 change: 1 addition & 0 deletions packages/framework/esm-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"rxjs": "6.x"
},
"dependencies": {
"@formatjs/intl-durationformat": "^0.2.4",
"@internationalized/date": "^3.5.4",
"semver": "7.3.2"
}
Expand Down
1 change: 1 addition & 0 deletions packages/tooling/openmrs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"glob": "^7.1.3",
"html-webpack-plugin": "^5.5.0",
"inquirer": "^7.3.3",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"mini-css-extract-plugin": "^2.9.0",
"node-watch": "^0.7.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/tooling/openmrs/src/commands/assemble.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import axios from 'axios';
import npmRegistryFetch from 'npm-registry-fetch';
import pacote from 'pacote';
import semver from 'semver';
import { merge } from 'lodash-es';
import merge from 'lodash/merge';
import { contentHash, logInfo, logWarn, untar } from '../utils';
import { getNpmRegistryConfiguration } from '../utils/npmConfig';

Expand Down
9 changes: 5 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3042,8 +3042,6 @@ __metadata:
version: 0.0.0-use.local
resolution: "@openmrs/esm-core@workspace:."
dependencies:
"@formatjs/intl-durationformat": "npm:^0.2.4"
"@hookform/resolvers": "npm:^3.6.0"
"@playwright/test": "npm:1.45.3"
"@swc/core": "npm:^1.3.58"
"@swc/jest": "npm:^0.2.29"
Expand Down Expand Up @@ -3075,7 +3073,6 @@ __metadata:
openmrs: "workspace:*"
postcss: "npm:^8.4.6"
prettier: "npm:^3.1.0"
react-hook-form: "npm:^7.52.0"
swc-loader: "npm:^0.2.3"
systemjs-webpack-interop: "npm:^2.3.7"
timezone-mock: "npm:^1.2.2"
Expand All @@ -3086,7 +3083,6 @@ __metadata:
typedoc-plugin-no-inherit: "npm:^1.3.1"
typescript: "npm:~4.6.4"
webpack: "npm:^5.88.0"
zod: "npm:^3.23.8"
languageName: unknown
linkType: soft

Expand Down Expand Up @@ -3272,17 +3268,20 @@ __metadata:
resolution: "@openmrs/esm-login-app@workspace:packages/apps/esm-login-app"
dependencies:
"@carbon/react": "npm:~1.37.0"
"@hookform/resolvers": "npm:^3.6.0"
"@openmrs/esm-framework": "workspace:*"
"@openmrs/webpack-config": "workspace:*"
jest: "npm:^29.7.0"
lodash-es: "npm:^4.17.21"
react: "npm:^18.1.0"
react-dom: "npm:^18.1.0"
react-hook-form: "npm:^7.52.0"
react-i18next: "npm:^11.18.6"
react-router-dom: "npm:^6.3.0"
rxjs: "npm:^6.5.3"
swr: "npm:^2.2.2"
webpack: "npm:^5.88.0"
zod: "npm:^3.23.8"
peerDependencies:
"@carbon/react": 1.x
"@openmrs/esm-framework": "*"
Expand Down Expand Up @@ -3522,6 +3521,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@openmrs/esm-utils@workspace:packages/framework/esm-utils"
dependencies:
"@formatjs/intl-durationformat": "npm:^0.2.4"
"@internationalized/date": "npm:^3.5.4"
"@openmrs/esm-globals": "workspace:*"
"@types/semver": "npm:^7.3.4"
Expand Down Expand Up @@ -14318,6 +14318,7 @@ __metadata:
glob: "npm:^7.1.3"
html-webpack-plugin: "npm:^5.5.0"
inquirer: "npm:^7.3.3"
lodash: "npm:^4.17.21"
lodash-es: "npm:^4.17.21"
mini-css-extract-plugin: "npm:^2.9.0"
node-watch: "npm:^0.7.4"
Expand Down

0 comments on commit 283e859

Please sign in to comment.