Skip to content

Commit

Permalink
drops support for node < v8 LTS, fixes slackapi#690
Browse files Browse the repository at this point in the history
  • Loading branch information
aoberoi committed Mar 6, 2019
1 parent 71aebba commit f313ace
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 70 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
- "10"
- "11"
after_success:
- npm run coverage
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2014-2017 Slack Technologies, Inc.
Copyright (c) 2014-2019 Slack Technologies, Inc.

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ webhook.send('Hello there', function(err, res) {

## Requirements

This package supports Node v6 LTS and higher. It's highly recommended to use [the latest LTS version of
This package supports Node v8 LTS and higher. It's highly recommended to use [the latest LTS version of
node](https://github.com/nodejs/Release#release-schedule), and the documentation is written using syntax and features
from that version.

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ internal apps that automate workflows, perform ChatOps, or just generate silly m

## Requirements

This package supports Node v6 LTS and higher. It's highly recommended to use [the latest LTS version of
This package supports Node v8 LTS and higher. It's highly recommended to use [the latest LTS version of
node](https://github.com/nodejs/Release#release-schedule), and the documentation is written using syntax and features
from that version.

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"dist/**/*"
],
"engines": {
"node": ">= 6.9.0",
"npm": ">= 3.10.8"
"node": ">= 8.9.0",
"npm": ">= 5.5.1"
},
"repository": "slackapi/node-slack-sdk",
"bugs": {
Expand All @@ -45,7 +45,7 @@
"dependencies": {
"@types/form-data": "^2.2.1",
"@types/is-stream": "^1.1.0",
"@types/node": ">=6.0.0",
"@types/node": ">=8.9.0",
"@types/p-cancelable": "^0.3.0",
"@types/p-queue": "^2.3.1",
"@types/p-retry": "^1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"declaration": true,
"target": "es2015",
"target": "es2017",
// esModuleInterop?
"module": "commonjs",
"moduleResolution": "node",
Expand Down
61 changes: 0 additions & 61 deletions types/eventemitter3.d.ts

This file was deleted.

0 comments on commit f313ace

Please sign in to comment.