diff --git a/apps/koku-ui-hccm/package.json b/apps/koku-ui-hccm/package.json index 6cc922c26..56a2e0683 100644 --- a/apps/koku-ui-hccm/package.json +++ b/apps/koku-ui-hccm/package.json @@ -124,10 +124,6 @@ "ts-patch": "^3.3.0", "typescript": "^5.9.3" }, - "overrides": { - "react-intl": "^7.1.14", - "redux": "^5.0.1" - }, "insights": { "appname": "cost-management" } diff --git a/apps/koku-ui-hccm/src/appEntry.tsx b/apps/koku-ui-hccm/src/appEntry.tsx index 3aa1fac1f..582da38bf 100644 --- a/apps/koku-ui-hccm/src/appEntry.tsx +++ b/apps/koku-ui-hccm/src/appEntry.tsx @@ -4,8 +4,7 @@ import '@patternfly/patternfly/patternfly-addons.css'; import './styles/global.css'; import NotificationsPortal from '@redhat-cloud-services/frontend-components-notifications/NotificationPortal'; -import { getLocale } from 'components/i18n'; -import { ignoreDefaultMessageError } from 'components/i18n/intl'; +import { getLocale, ignoreDefaultMessageError } from 'components/i18n'; import React from 'react'; import { IntlProvider } from 'react-intl'; import { Provider } from 'react-redux'; diff --git a/apps/koku-ui-hccm/src/components/i18n/index.ts b/apps/koku-ui-hccm/src/components/i18n/index.ts index 19fd98380..b2105129e 100644 --- a/apps/koku-ui-hccm/src/components/i18n/index.ts +++ b/apps/koku-ui-hccm/src/components/i18n/index.ts @@ -1 +1 @@ -export { default as intl, getLocale } from './intl'; +export { default as intl, getLocale, ignoreDefaultMessageError } from './intl'; diff --git a/apps/koku-ui-ros/package.json b/apps/koku-ui-ros/package.json index 4f5d6b38b..fdf087456 100644 --- a/apps/koku-ui-ros/package.json +++ b/apps/koku-ui-ros/package.json @@ -119,10 +119,6 @@ "ts-patch": "^3.3.0", "typescript": "^5.9.3" }, - "overrides": { - "react-intl": "^7.1.14", - "redux": "^5.0.1" - }, "insights": { "appname": "cost-management-ros" } diff --git a/apps/koku-ui-ros/src/appEntry.tsx b/apps/koku-ui-ros/src/appEntry.tsx index 5950dec26..1b4246457 100644 --- a/apps/koku-ui-ros/src/appEntry.tsx +++ b/apps/koku-ui-ros/src/appEntry.tsx @@ -4,8 +4,7 @@ import '@patternfly/patternfly/patternfly-addons.css'; import './styles/global.css'; import NotificationsPortal from '@redhat-cloud-services/frontend-components-notifications/NotificationPortal'; -import { getLocale } from 'components/i18n'; -import { ignoreDefaultMessageError } from 'components/i18n/intl'; +import { getLocale, ignoreDefaultMessageError } from 'components/i18n'; import React from 'react'; import { IntlProvider } from 'react-intl'; import { Provider } from 'react-redux'; diff --git a/apps/koku-ui-ros/src/components/i18n/index.ts b/apps/koku-ui-ros/src/components/i18n/index.ts index 19fd98380..b2105129e 100644 --- a/apps/koku-ui-ros/src/components/i18n/index.ts +++ b/apps/koku-ui-ros/src/components/i18n/index.ts @@ -1 +1 @@ -export { default as intl, getLocale } from './intl'; +export { default as intl, getLocale, ignoreDefaultMessageError } from './intl'; diff --git a/package.json b/package.json index 1de418a94..1aecd8161 100644 --- a/package.json +++ b/package.json @@ -27,14 +27,15 @@ "lint": "npm exec --workspaces -- npm run lint", "lint:fix:all": "npm exec --workspaces -- npm run lint:ts:fix", "test": "npm exec --workspaces -- npm run test --", - "release:all": "node scripts/release-all.js", + "release": "node scripts/release.js", "start:hccm": "npm run -w @koku-ui/koku-ui-hccm start", "start:ros": "npm run -w @koku-ui/koku-ui-ros start", "start:onprem": "concurrently -k --names \"HOST,HCCM,ROS\" --prefix-colors \"yellow,cyan,magenta\" \"npm run -w @koku-ui/koku-ui-onprem start\" \"npm run -w @koku-ui/koku-ui-hccm start:onprem\" \"npm run -w @koku-ui/koku-ui-ros start:onprem\"" }, "scripts-info": { + "check:dependencies": "Checks for outdated dependencies", "check:dependencies:all": "Checks for outdated dependencies in each workspace", - "release:all": "Used to merge stage/prod branches and deploy app-interface with the latest SHA refs from same branches", + "release": "Used to merge stage/prod branches and deploy app-interface with the latest SHA refs from same branches", "start:hccm": "Run Koku UI", "start:ros": "Run ROS UI", "start:onprem": "Run onprem UI" diff --git a/scripts/release-all.js b/scripts/release.js similarity index 100% rename from scripts/release-all.js rename to scripts/release.js