From 620dba81d03d0fd63a115aafd6522c2d63f1c67b Mon Sep 17 00:00:00 2001 From: Bill Looby <51128939+bill-looby-i@users.noreply.github.com> Date: Thu, 4 Aug 2022 13:09:39 +0100 Subject: [PATCH 01/14] Updated to Merative link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 18187c7..4d6a944 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,4 @@ A collection of front-end tools and libraries that can be used to extend UIM with JavaScript components. It enables rapid development of SPM custom application pages based on the IBM Carbon Design System. -The documentation is available at this URL: [https://ibm.github.io/spm-ui-addon-devenv/](https://ibm.github.io/spm-ui-addon-devenv/) +The documentation is available at this URL: [https://merative.github.io/spm-ui-addon-devenv/](https://merative.github.io/spm-ui-addon-devenv/) From 73c7b6dcdc1bc2678b8a53620028feb073a3fd1d Mon Sep 17 00:00:00 2001 From: Paraic O'Raghallaigh <40825139+poraghal@users.noreply.github.com> Date: Tue, 11 Oct 2022 16:53:53 +0100 Subject: [PATCH 02/14] add deploy script add GitHub Actions deploy script --- .github/workflows/deploy.yml | 44 +++++++++++++++++++++ cookbook/package-lock.json | 76 ++++++++++++++++++------------------ 2 files changed, 81 insertions(+), 39 deletions(-) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..f17099c --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,44 @@ +name: Deploy +on: + push: + branches: [main] + pull_request: + workflow_dispatch: +jobs: + build-and-deploy: + runs-on: ubuntu-latest + permissions: + contents: write + steps: + - name: checkout code + uses: actions/checkout@v3 + - name: Install Node.js + uses: actions/setup-node@v3 + with: + node-version: 15.0.1 + - name: Install dependencies + run: | + pwd + cd packages/gatsby-docs + pwd + yarn install + yarn run gatsby --version + yarn gatsby build --prefix-paths + echo Site built and ready to deploy! + - name: Deploy to Github packages + # only deploy when pushing to main + if: ${{(github.event_name == 'push' || github.event_name == 'workflow_dispatch' ) && github.ref_name == 'main'}} + run: | + cd packages/gatsby-docs/public + git config --global init.defaultBranch main + pwd + set -v + git init + git config user.name ${{ github.actor }} + git config user.email ${{ github.actor }}@users.noreply.github.com + git add . + echo 'Add completed'. + git commit -m "Deploy commit: ${{ github.sha }}" + echo 'Commit completed.' + git push -f https://x-access-token:${{ github.token }}@github.com/${{ github.repository }}.git main:gh-pages + echo 'Finished deploying the site.' diff --git a/cookbook/package-lock.json b/cookbook/package-lock.json index a51a585..934cdaf 100644 --- a/cookbook/package-lock.json +++ b/cookbook/package-lock.json @@ -2637,13 +2637,6 @@ "unist-util-remove-position": "^2.0.0", "vfile-location": "^3.0.0", "xtend": "^4.0.1" - }, - "dependencies": { - "trim": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.3.tgz", - "integrity": "sha512-h82ywcYhHK7veeelXrCScdH7HkWfbIT1D/CgYO+nmDarz3SGNssVBMws6jU16Ga60AJCRAvPV6w6RLuNerQqjg==" - } } }, "semver": { @@ -2651,6 +2644,11 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" }, + "trim": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", + "integrity": "sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==" + }, "unified": { "version": "9.2.0", "resolved": "https://registry.npmjs.org/unified/-/unified-9.2.0.tgz", @@ -3839,6 +3837,11 @@ "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==" }, + "async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w==" + }, "async-cache": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/async-cache/-/async-cache-1.1.0.tgz", @@ -5101,13 +5104,6 @@ "async": "1.5.2", "lodash.clonedeep": "4.5.0", "lru-cache": "4.0.0" - }, - "dependencies": { - "async": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.2.tgz", - "integrity": "sha512-H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g==" - } } }, "cacheable-lookup": { @@ -11772,13 +11768,6 @@ "requires": { "highlight.js": "^8.1.0", "minimist": "^0.2.0" - }, - "dependencies": { - "minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" - } } }, "highlight.js": { @@ -14179,6 +14168,11 @@ "brace-expansion": "^1.1.7" } }, + "minimist": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.2.1.tgz", + "integrity": "sha512-GY8fANSrTMfBVfInqJAY41QkOM+upUTytK1jZ0c8+3HdHrJxBJ3rF5i9moClXTE8uUSnUo8cAsCoxDXvSY4DHg==" + }, "minipass": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", @@ -14515,6 +14509,11 @@ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz", "integrity": "sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==" }, + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==" + }, "node-gyp": { "version": "3.8.0", "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz", @@ -15715,9 +15714,12 @@ }, "dependencies": { "async": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.2.tgz", - "integrity": "sha512-H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g==" + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "requires": { + "lodash": "^4.17.14" + } } } }, @@ -17745,11 +17747,6 @@ "is-decimal": "^1.0.0", "is-hexadecimal": "^1.0.0" } - }, - "trim": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.3.tgz", - "integrity": "sha512-h82ywcYhHK7veeelXrCScdH7HkWfbIT1D/CgYO+nmDarz3SGNssVBMws6jU16Ga60AJCRAvPV6w6RLuNerQqjg==" } } }, @@ -18337,9 +18334,12 @@ "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" }, "async": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.2.tgz", - "integrity": "sha512-H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g==" + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "requires": { + "lodash": "^4.17.14" + } }, "chalk": { "version": "1.1.3", @@ -18446,13 +18446,6 @@ "integrity": "sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w==", "requires": { "node-forge": "^0.10.0" - }, - "dependencies": { - "node-forge": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.0.tgz", - "integrity": "sha512-08ARB91bUi6zNKzVmaj3QO7cr397uiDT2nJ63cHjyNtCTWIgvS47j3eT0WfzUwS9+6Z5YshRaoasFkXCKrIYbA==" - } } }, "semver": { @@ -20428,6 +20421,11 @@ "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" }, + "trim": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", + "integrity": "sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==" + }, "trim-newlines": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", From 8a4899d552e4d9539238b491f5365513deb2aa66 Mon Sep 17 00:00:00 2001 From: Paraic O'Raghallaigh <40825139+poraghal@users.noreply.github.com> Date: Tue, 11 Oct 2022 16:56:12 +0100 Subject: [PATCH 03/14] Update deploy.yml --- .github/workflows/deploy.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f17099c..1937461 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -19,17 +19,17 @@ jobs: - name: Install dependencies run: | pwd - cd packages/gatsby-docs + cd cookbook pwd - yarn install - yarn run gatsby --version - yarn gatsby build --prefix-paths + npm install + npm gatsby --version + npm gatsby build --prefix-paths echo Site built and ready to deploy! - name: Deploy to Github packages # only deploy when pushing to main if: ${{(github.event_name == 'push' || github.event_name == 'workflow_dispatch' ) && github.ref_name == 'main'}} run: | - cd packages/gatsby-docs/public + cd cookbook/public git config --global init.defaultBranch main pwd set -v From fcf00f62fa5de612b8cbcc0605f0fb648544bd03 Mon Sep 17 00:00:00 2001 From: Paraic O'Raghallaigh <40825139+poraghal@users.noreply.github.com> Date: Wed, 12 Oct 2022 13:44:59 +0100 Subject: [PATCH 04/14] Update gatsby-config.js --- cookbook/gatsby-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/gatsby-config.js b/cookbook/gatsby-config.js index e81c72a..2021488 100644 --- a/cookbook/gatsby-config.js +++ b/cookbook/gatsby-config.js @@ -6,7 +6,7 @@ console.log(`Using SITE_PREFIX: '${sitePrefix}'`) module.exports = { siteMetadata: { title: siteTitle, - description: 'IBM Curam Social Program Management UI Addon Development Environment', + description: 'Merative Social Program Management UI Addon Development Environment', keywords: 'ibm,curam,containers', }, pathPrefix: sitePrefix, From 4956473ebdc0294a48da485f03f807cd27576d1e Mon Sep 17 00:00:00 2001 From: Paraic O'Raghallaigh <40825139+poraghal@users.noreply.github.com> Date: Wed, 12 Oct 2022 13:55:57 +0100 Subject: [PATCH 05/14] Update deploy.yml --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1937461..3667b29 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,7 +18,7 @@ jobs: node-version: 15.0.1 - name: Install dependencies run: | - pwd + echo $PWD cd cookbook pwd npm install From b3111f3f98d4168d6c156309b616ea5ad640dca7 Mon Sep 17 00:00:00 2001 From: Paraic O'Raghallaigh <40825139+poraghal@users.noreply.github.com> Date: Wed, 12 Oct 2022 14:12:17 +0100 Subject: [PATCH 06/14] Update deploy.yml --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3667b29..cc80985 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,7 +18,7 @@ jobs: node-version: 15.0.1 - name: Install dependencies run: | - echo $PWD + run echo $PWD cd cookbook pwd npm install From 072ca2ac78307dfd2fe88d953c648927254cfdf2 Mon Sep 17 00:00:00 2001 From: Paraic O'Raghallaigh <40825139+poraghal@users.noreply.github.com> Date: Wed, 12 Oct 2022 14:24:56 +0100 Subject: [PATCH 07/14] Update deploy.yml --- .github/workflows/deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index cc80985..9634381 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,7 +18,8 @@ jobs: node-version: 15.0.1 - name: Install dependencies run: | - run echo $PWD + CWD=$(pwd -P) + echo $CWD cd cookbook pwd npm install From 14e59419c5fd45807f4c1610ef4e08bb9f44ae5d Mon Sep 17 00:00:00 2001 From: Paraic O'Raghallaigh <40825139+poraghal@users.noreply.github.com> Date: Wed, 12 Oct 2022 14:44:11 +0100 Subject: [PATCH 08/14] Update deploy.yml --- .github/workflows/deploy.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9634381..06f4294 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,13 +18,12 @@ jobs: node-version: 15.0.1 - name: Install dependencies run: | - CWD=$(pwd -P) - echo $CWD cd cookbook + set -v pwd npm install npm gatsby --version - npm gatsby build --prefix-paths + npm run build --prefix-paths echo Site built and ready to deploy! - name: Deploy to Github packages # only deploy when pushing to main From acc32019160cd126d8a0c209ff489b28fc490939 Mon Sep 17 00:00:00 2001 From: Paraic O'Raghallaigh <40825139+poraghal@users.noreply.github.com> Date: Wed, 12 Oct 2022 15:27:13 +0100 Subject: [PATCH 09/14] Update deploy.yml --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 06f4294..b37fb4f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -23,7 +23,7 @@ jobs: pwd npm install npm gatsby --version - npm run build --prefix-paths + npm run build echo Site built and ready to deploy! - name: Deploy to Github packages # only deploy when pushing to main From 3850f702281a7483b907426e13524f05666442d1 Mon Sep 17 00:00:00 2001 From: Paraic O'Raghallaigh <40825139+poraghal@users.noreply.github.com> Date: Wed, 12 Oct 2022 15:42:42 +0100 Subject: [PATCH 10/14] Update gatsby-config.js --- cookbook/gatsby-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/gatsby-config.js b/cookbook/gatsby-config.js index 2021488..e0eb50e 100644 --- a/cookbook/gatsby-config.js +++ b/cookbook/gatsby-config.js @@ -1,6 +1,6 @@ const siteTitle = 'IBM Curam SPM UI Addon Development Environment' -var sitePrefix = process.env.SITE_PREFIX || "/" +var sitePrefix = process.env.SITE_PREFIX || "/spm-ui-addon-devenv" console.log(`Using SITE_PREFIX: '${sitePrefix}'`) module.exports = { From 9086810c8098703caa271db1d812e27d109a743d Mon Sep 17 00:00:00 2001 From: Paraic O'Raghallaigh <40825139+poraghal@users.noreply.github.com> Date: Thu, 13 Oct 2022 08:30:12 +0100 Subject: [PATCH 11/14] Update gatsby-config.js --- cookbook/gatsby-config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbook/gatsby-config.js b/cookbook/gatsby-config.js index e0eb50e..2faac0c 100644 --- a/cookbook/gatsby-config.js +++ b/cookbook/gatsby-config.js @@ -1,4 +1,4 @@ -const siteTitle = 'IBM Curam SPM UI Addon Development Environment' +const siteTitle = 'Merative SPM UI Addon Development Environment' var sitePrefix = process.env.SITE_PREFIX || "/spm-ui-addon-devenv" console.log(`Using SITE_PREFIX: '${sitePrefix}'`) @@ -7,7 +7,7 @@ module.exports = { siteMetadata: { title: siteTitle, description: 'Merative Social Program Management UI Addon Development Environment', - keywords: 'ibm,curam,containers', + keywords: 'merative,curam,containers,', }, pathPrefix: sitePrefix, plugins: [ From 71780b098e81aabd9d20a42938beb5de35340bd3 Mon Sep 17 00:00:00 2001 From: Paraic O'Raghallaigh <40825139+poraghal@users.noreply.github.com> Date: Thu, 13 Oct 2022 09:26:14 +0100 Subject: [PATCH 12/14] Update prerequisites.mdx --- cookbook/src/pages/prerequisites.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cookbook/src/pages/prerequisites.mdx b/cookbook/src/pages/prerequisites.mdx index d78c430..acb4d59 100644 --- a/cookbook/src/pages/prerequisites.mdx +++ b/cookbook/src/pages/prerequisites.mdx @@ -12,24 +12,24 @@ Node.js is a prerequisite for installing the Social Program Managment UI Addon D | Node.js | 14 LTS (latest) | 14.16.0 LTS (Fermium) | No | | | 12 LTS (latest) | 12.13.0 LTS (Erbium) | No | -## IBM Cúram Social Program Management +## Merative Social Program Management -| Supported software | Version | +| UI Addon Development Environment | Social Program Management | | :-------------- | :----------- | -| UI Addon Development Environment | IBM Social Program Management | | 1.0.0 (supports Carbon v10) | 8.0.1 (supports Carbon v10)| +||8.0.2 (supports Carbon v10)| ## Integrated Development Environment (IDE) The SPM UI Addons Development Environment does not depend on a specific IDE, you can choose your own. There are many IDEs that you can choose, such as Microsoft Visual Studio Code, Atom, or Sublime. -However, IBM uses Microsoft Visual Studio Code to develop Social Program Managment UI Addons, it supports many plugins that make development faster and easier, for example it supports the following tools: +However, Merative uses Microsoft Visual Studio Code to develop Social Program Managment UI Addons, it supports many plugins that make development faster and easier, for example it supports the following tools: * Linting tools (ESLint) * Code formatters (Prettier) * Debugging tools (Debugger for Chrome) * Documentation tools (JSDoc) -IBM does not own, develop, or support these tools. +Merative does not own, develop, or support these tools. The repository includes some basic configuration for Microsoft Visual Studio Code and you can download more plug ins as necessary.  The IDE also has a terminal to run commands. From 1d0e28020e35e85c8977d43cdfcd6ba8e13bd837 Mon Sep 17 00:00:00 2001 From: Paraic O'Raghallaigh <40825139+poraghal@users.noreply.github.com> Date: Tue, 25 Oct 2022 10:18:18 +0100 Subject: [PATCH 13/14] Update disclaimer.mdx --- cookbook/src/pages/disclaimer.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cookbook/src/pages/disclaimer.mdx b/cookbook/src/pages/disclaimer.mdx index 8bff518..2fca58d 100644 --- a/cookbook/src/pages/disclaimer.mdx +++ b/cookbook/src/pages/disclaimer.mdx @@ -3,13 +3,13 @@ title: Disclaimer description: Disclaimer --- -This cookbook is current as of the initial date of publication and may be changed by IBM® at any time. +This cookbook is current as of the initial date of publication and may be changed by Merative at any time. THE INFORMATION IN THIS COOKBOOK IS PROVIDED “AS IS” WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED, INCLUDING WITHOUT ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ANY WARRANTY OR CONDITION OF NON-INFRINGEMENT. -IBM products are warranted according to the terms and conditions of the agreements under which they are provided. +Merative products are warranted according to the terms and conditions of the agreements under which they are provided. This cookbook is intended for general guidance only. It is not intended to be a substitute for detailed research or the exercise of professional judgment. -IBM shall not be responsible for any loss whatsoever sustained by any organization or person who relies on this material. +Merative shall not be responsible for any loss whatsoever sustained by any organization or person who relies on this material. -The data used in this cookbook may be derived from third-party sources and IBM does not independently verify, validate or audit such data. -The results from the use of such data are provided on an “as is” basis and IBM makes no representations or warranties, express or implied. +The data used in this cookbook may be derived from third-party sources and Merative does not independently verify, validate or audit such data. +The results from the use of such data are provided on an “as is” basis and Merative makes no representations or warranties, express or implied. From 8553a8d7c758be5b812d08601f02a3b962a86467 Mon Sep 17 00:00:00 2001 From: Paraic O'Raghallaigh <40825139+poraghal@users.noreply.github.com> Date: Tue, 25 Oct 2022 10:19:13 +0100 Subject: [PATCH 14/14] Update disclaimer.mdx --- cookbook/src/pages/disclaimer.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/cookbook/src/pages/disclaimer.mdx b/cookbook/src/pages/disclaimer.mdx index 2fca58d..6c4a2d5 100644 --- a/cookbook/src/pages/disclaimer.mdx +++ b/cookbook/src/pages/disclaimer.mdx @@ -6,6 +6,7 @@ description: Disclaimer This cookbook is current as of the initial date of publication and may be changed by Merative at any time. THE INFORMATION IN THIS COOKBOOK IS PROVIDED “AS IS” WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED, INCLUDING WITHOUT ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ANY WARRANTY OR CONDITION OF NON-INFRINGEMENT. + Merative products are warranted according to the terms and conditions of the agreements under which they are provided. This cookbook is intended for general guidance only. It is not intended to be a substitute for detailed research or the exercise of professional judgment.