Skip to content

Commit

Permalink
Breaking: drop node 6, 8, IE, Safari 9-11 & stock Android
Browse files Browse the repository at this point in the history
  • Loading branch information
vweevers committed Apr 17, 2021
1 parent 2df2a44 commit bb1d4da
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 18 deletions.
13 changes: 7 additions & 6 deletions .airtap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ providers:

browsers:
- name: chrome
- name: ie
- name: firefox
- name: iphone
version: '10.3'
- name: android
version: '6.0'
- name: edge
- name: safari
version: 12..latest
- name: ios_saf
version: 12..latest
- name: chrome for android
version: 6..latest
- name: msedge

presets:
local:
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ cache:
matrix:
fast_finish: true
include:
- node_js: 6
- node_js: 10
env: CMD=test
- node_js: 8
- node_js: 12
env: CMD=test
- node_js: 10
- node_js: 14
env: CMD=test
- node_js: stable
env:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ The most common store is [`leveldown`](https://github.com/Level/leveldown/) whic

## Supported Platforms

We aim to support Active LTS and Current Node.js releases as well as browsers. For support of the underlying store, please see the respective documentation. If you want to use [Promises](#promise-support), you will need a polyfill like [`pinkie`](https://github.com/floatdrop/pinkie) in older browsers like IE.
We aim to support Active LTS and Current Node.js releases as well as browsers. For support of the underlying store, please see the respective documentation.

[![Sauce Test Status](https://saucelabs.com/browser-matrix/levelup.svg)](https://saucelabs.com/u/levelup)
[![Sauce Test Status](https://app.saucelabs.com/browser-matrix/levelup.svg)](https://app.saucelabs.com/u/levelup)

## Usage

Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
"level-concat-iterator": "^2.0.1",
"memdown": "^5.0.0",
"nyc": "^14.0.0",
"pinkie": "^2.0.4",
"run-parallel": "1.1.10",
"run-series": "^1.1.8",
"safe-buffer": "^5.1.0",
Expand Down Expand Up @@ -68,6 +67,6 @@
"json"
],
"engines": {
"node": ">=6"
"node": ">=10"
}
}
5 changes: 0 additions & 5 deletions test/self.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
'use strict'

// Promise polyfill for IE and others.
if (process.browser && typeof Promise !== 'function') {
global.Promise = require('pinkie')
}

const test = require('tape')
const memdown = require('memdown')
const encode = require('encoding-down')
Expand Down

0 comments on commit bb1d4da

Please sign in to comment.