chore: drop support for Node.js 14 and lower
BREAKING CHANGE: Drop support for Node.js 14 and lower Signed-off-by: dhmlau <dhmlau@ca.ibm.com>
This commit is contained in:
parent
b1aab94466
commit
1199735ff1
|
@ -20,7 +20,7 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest]
|
os: [ubuntu-latest]
|
||||||
node-version: [10, 12, 14, 16, 17]
|
node-version: [16, 18, 20]
|
||||||
include:
|
include:
|
||||||
- os: macos-latest
|
- os: macos-latest
|
||||||
node_version: 16
|
node_version: 16
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
.idea
|
||||||
|
.project
|
||||||
|
.DS_Store
|
||||||
|
*.sublime*
|
||||||
|
*.seed
|
||||||
|
*.log
|
||||||
|
*.csv
|
||||||
|
*.dat
|
||||||
|
*.out
|
||||||
|
*.pid
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
node_modules
|
||||||
|
checkstyle.xml
|
||||||
|
loopback-connector-*.tgz
|
||||||
|
.nyc_output
|
||||||
|
coverage
|
||||||
|
.vscodetest
|
||||||
|
.travis.yml
|
|
@ -1,7 +1,6 @@
|
||||||
# LoopBack Connector
|
# LoopBack Connector
|
||||||
|
|
||||||
[![CI](https://github.com/loopbackio/loopback-connector/actions/workflows/continuous-integration.yaml/badge.svg)](https://github.com/loopbackio/loopback-connector/actions/workflows/continuous-integration.yaml)
|
[![CI](https://github.com/loopbackio/loopback-connector/actions/workflows/continuous-integration.yaml/badge.svg)](https://github.com/loopbackio/loopback-connector/actions/workflows/continuous-integration.yaml)
|
||||||
[![Build Status](https://app.travis-ci.com/loopbackio/loopback-connector.svg?branch=master)](https://app.travis-ci.com/loopbackio/loopback-connector)
|
|
||||||
|
|
||||||
LoopBack Connector is a set of building blocks simplifying implementation
|
LoopBack Connector is a set of building blocks simplifying implementation
|
||||||
of datasource-specific connectors like Oracle, MongoDB, REST.
|
of datasource-specific connectors like Oracle, MongoDB, REST.
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"version": "5.3.3",
|
"version": "5.3.3",
|
||||||
"description": "Building blocks for LoopBack connectors",
|
"description": "Building blocks for LoopBack connectors",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=10"
|
"node": ">=16"
|
||||||
},
|
},
|
||||||
"author": "IBM Corp.",
|
"author": "IBM Corp.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
],
|
],
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/strongloop/loopback-connector"
|
"url": "https://github.com/loopbackio/loopback-connector"
|
||||||
},
|
},
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Loading…
Reference in New Issue