Skip to content
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 .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.10
10.17
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ language: node_js

node_js:
- 'stable'
- '8'
- '9'
- '10'
- '12'

sudo: false

Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ This project contains the CLI aspects of deploying Twilio Serverless as well as

## Requirements

Make sure you have Node.js 8.10 or newer installed. Due to compatibility with Twilio
Functions this project has to support at least Node.js 8.10.
Make sure you have Node.js 10.17 or newer installed. Due to compatibility with Twilio
Functions this project has to support at least Node.js 10.17.

## Setup

Expand Down
2 changes: 1 addition & 1 deletion src/checks/nodejs-version.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { stripIndent } from 'common-tags';
import { logger } from '../utils/logger';

const SERVERLESS_NODE_JS_VERSION = '8.10';
const SERVERLESS_NODE_JS_VERSION = '10.17';

export function printVersionWarning(
nodeVersion: string,
Expand Down