Skip to content

Commit

Permalink
Merge branch 'main' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarah Riehl authored Jan 14, 2024
2 parents 6b9967d + f8143fe commit 3b11cbf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 12 deletions.
16 changes: 6 additions & 10 deletions docs/stencil-docs/installing-stencil-cli/installing-stencil.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ This article contains detailed instructions on installing and configuring Stenci
To install Stencil CLI and its dependencies on Mac, open a terminal and run the following commands. Refer to [Stencil CLI README.MD](https://github.com/bigcommerce/stencil-cli) for latest `node` version supported.


<Callout type="info">
These instructions have been tested on **Mac OS X Yosemite**.
</Callout>

```shell showLineNumbers copy
# For ARM based macs
arch -x86_64 /bin/zsh
Expand All @@ -30,10 +26,10 @@ arch -x86_64 /bin/zsh
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash

# Install Stencil CLI supported version of Node.js
nvm install 20.10.0
nvm install 18.15.0

# Switch to Stencil CLI supported version of Node.js:
nvm use 20.10.0
nvm use 18.15.0

# Install Stencil CLI
npm install -g @bigcommerce/stencil-cli
Expand All @@ -56,7 +52,7 @@ choco install git

# Install nvm windows and stencil-compatible node.js

choco install nvm; nvm install 20.10.0; nvm use 20.10.0
choco install nvm; nvm install 18.15.0; nvm use 18.15.0

# Install Stencil CLI
npm install -g @bigcommerce/stencil-cli
Expand All @@ -78,7 +74,7 @@ If you're a pro at installing and configuring Python and Node.js environments on

**Required Dependencies:**
* [Git](https://git-scm.com/downloads) - required to run npm install
* [Node.js 20.10.0 and npm](https://nodejs.org/en/download/releases/)
* [Node.js 18.15.0 and npm](https://nodejs.org/en/download/releases/)

Once they're installed and configured, use `npm` to install Stencil CLI:

Expand All @@ -103,9 +99,9 @@ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash
source ~/.bashrc

# Explicitly install and use supported node version
nvm install 20.10.0
nvm install 18.15.0

nvm use 20.10.0
nvm use 18.15.0

# Install stencil
npm install -g @bigcommerce/stencil-cli
Expand Down
4 changes: 2 additions & 2 deletions reference/tax_provider.yml
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ paths:
post:
summary: Void Tax Quote
description: |-
Invalidate the persisted tax quote as identified by the given unique ID. Relevant to order cancellations or when moving an order from a paid status to an unpaid status.
Invalidate the persisted tax quote as identified by the given unique ID. Relevant to order cancellations, full refunds, or moving an order from a paid status to an unpaid status.
> Server URL
> - For supporting tax providers, the server URL contains the tax provider's profile field; for example, `your_profile.example.com`.
Expand Down Expand Up @@ -843,7 +843,7 @@ paths:
description: |-
Replace the persisted tax quote (identified by the given unique ID) with the provided quote request (represented by the **AdjustRequest**).
Relevant for partial refunds, full refunds, returns, and other Order modifications where there have been changes to the tax liabilities.
Relevant for returns, partial refunds, and other Order modifications where there have been changes to the tax liabilities.
The returned **Tax Quote** response is expected to be the same to a response returned by an equivalent response to **estimate** or **commit** methods.
Expand Down

0 comments on commit 3b11cbf

Please sign in to comment.