Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: strf-9791 Drop Node 12 Support #945

Merged
merged 1 commit into from
Jun 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pull_request_review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
strategy:
matrix:
node: [12.x, 14.x]
node: [14.x]
os: ['ubuntu-latest', 'windows-2019', 'macos-latest']

runs-on: ${{ matrix.os }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
### Draft

### 5.0.0 (2022-06-06)

- feat: strf-9791 Drop Node 12 Support ([x](https://github.com/bigcommerce/stencil-cli/pull/x))

### 4.1.1 (2022-05-24)

- fix: strf-9781 Bump dev packages for linting ([932](https://github.com/bigcommerce/stencil-cli/pull/932))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The BigCommerce server emulator for local theme development.
## Install

_Note: Stencil requires the Node.js runtime environment,
version 12.x and 14.x (Recommended) are supported.
version 14.x is supported.
We do not yet have support for versions greater than Node 14._

Run `npm install -g @bigcommerce/stencil-cli`.
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@bigcommerce/stencil-cli",
"version": "4.1.1",
"version": "5.0.0",
"description": "CLI tool to run BigCommerce Stores locally for theme development.",
"main": "index.js",
"engines": {
"node": ">=12.0.0 <15.0.0",
"node": ">=14.0.0 <15.0.0",
"npm": ">=v6.11.3 <9.0.0"
},
"scripts": {
Expand Down