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

Drop support for node v8 #2350

Merged
merged 2 commits into from
Feb 15, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ environment:
# Define versions of Node.js
matrix:
- node_js: '' # latest node
- node_js: 10.11.0 # vscode >= 1.36.0
- node_js: 12.4.0 # vscode >= 1.40.0
- node_js: 10.11.0 # vscode >= 1.36.0 < 1.40.0
- node_js: 10.2.0 # vscode >= 1.31.0 < 1.36.0
- node_js: 8.9.3 # vscode >= 1.26.0 < 1.31.0
matrix:
fast_finish: true
allow_failures:
Expand All @@ -18,7 +18,7 @@ matrix:
platform:
- x64
cache:
# - node_modules
- node_modules
init:
# Install the platform version of Node.js
- ps: Install-Product node $env:node_js $env:platform
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ os:
- osx
node_js:
- node # latest node
- 10.11.0 # vscode >= 1.36.0
- 12.4.0 # vscode >= 1.40.0
- 10.11.0 # vscode >= 1.36.0 < 1.40.0
- 10.2.0 # vscode >= 1.31.0 < 1.36.0
- 8.9.3 # vscode >= 1.26.0 < 1.31.0
git:
depth: 5
submodules: false
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
- stage: publish
if: repo =~ ^vscode-icons AND tag IS present AND type = push
os: linux
node_js: 8.9.3
node_js: 10.2.0
install:
- npm run preinstall
- npm i vsce --no-save
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

---

Bring icons to your [Visual Studio Code](https://code.visualstudio.com/) (**minimum supported version: `1.26.1`**)
Bring icons to your [Visual Studio Code](https://code.visualstudio.com/) (**minimum supported version: `1.31.1`**)

![demo](https://raw.githubusercontent.com/vscode-icons/vscode-icons/master/images/screenshot.gif)

Expand Down
Loading