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:
dhmlau 2023-06-27 09:59:41 -04:00 committed by Samarpan Bhattacharya
parent b1aab94466
commit 1199735ff1
4 changed files with 22 additions and 4 deletions

View File

@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [10, 12, 14, 16, 17]
node-version: [16, 18, 20]
include:
- os: macos-latest
node_version: 16

19
.npmignore Normal file
View File

@ -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

View File

@ -1,7 +1,6 @@
# 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)
[![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
of datasource-specific connectors like Oracle, MongoDB, REST.

View File

@ -3,7 +3,7 @@
"version": "5.3.3",
"description": "Building blocks for LoopBack connectors",
"engines": {
"node": ">=10"
"node": ">=16"
},
"author": "IBM Corp.",
"keywords": [
@ -13,7 +13,7 @@
],
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-connector"
"url": "https://github.com/loopbackio/loopback-connector"
},
"main": "index.js",
"scripts": {