From 773ccef8d54844a50e4d2807e2cf63b7ba2b5fe7 Mon Sep 17 00:00:00 2001 From: Ricardo van der Heijden <20791917+ricardovdheijden@users.noreply.github.com> Date: Tue, 4 Jun 2024 12:01:04 +0200 Subject: [PATCH] Updates versions in package-lock.json and adds update commands to the README.md file --- README.md | 13 +++++++++++++ package-lock.json | 12 ++++++------ 2 files changed, 19 insertions(+), 6 deletions(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..ac8a090 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +## Updating library version in package-lock.json. + +Since the version of dependency `@orchestrator-ui/orchestrator-ui-components` is `*` for proper usage in our Turborepo, we still need to update package-lock.json to make the build command build the app with the latest library version. +After publishing a new version to npm, the current repository need to be manually updated. + +Note: the command below can only be executed when the app is not part of the monorepo setup. + +```bash +npm update @orchestrator-ui/orchestrator-ui-components +npm update @orchestrator-ui/eslint-config-custom +npm update @orchestrator-ui/jest-config +npm update @orchestrator-ui/tsconfig +``` \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 366ca94..bb90a0a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2913,9 +2913,9 @@ } }, "node_modules/@orchestrator-ui/eslint-config-custom": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@orchestrator-ui/eslint-config-custom/-/eslint-config-custom-1.2.1.tgz", - "integrity": "sha512-icAvjnEN35eeiWpbznl+rjjKKlcWa45ry9M9vADlf+ERWoUv2PgkVJwBY/jxJoceEEaemDCvKZE55kY8K9NwnA==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@orchestrator-ui/eslint-config-custom/-/eslint-config-custom-1.3.0.tgz", + "integrity": "sha512-0PZoYKmzBgA1pAfWCClphmjIfCCRQLHW3KUPT/0yLFUyV3TFTMmYrEHy/Uix1TgPcVJXTvoKGiFxIm/6vdgW9w==", "dev": true, "dependencies": { "@trivago/prettier-plugin-sort-imports": "^4.3.0", @@ -2945,9 +2945,9 @@ } }, "node_modules/@orchestrator-ui/orchestrator-ui-components": { - "version": "1.23.0", - "resolved": "https://registry.npmjs.org/@orchestrator-ui/orchestrator-ui-components/-/orchestrator-ui-components-1.23.0.tgz", - "integrity": "sha512-abjXsEA0q/JmeB75S0E1XsmRxZIzu4rwHK9wC3lenhPntFsThKzdnrc6BSvbiqmfP7DBnrvKcW5DhzgQzivVsA==", + "version": "1.24.0", + "resolved": "https://registry.npmjs.org/@orchestrator-ui/orchestrator-ui-components/-/orchestrator-ui-components-1.24.0.tgz", + "integrity": "sha512-p7F+opktbDdSQBi0KogyV5wx7AmCFQD0U0eZHAa7ILbABCsm0oJ7Y+SeBaBqHeg4lih/juUnBRpgALT6GTPvFQ==", "dependencies": { "@emotion/css": "^11.11.2", "@emotion/react": "^11.11.1",