Skip to content

Commit

Permalink
chore(package): drop node 10 [BREAKING CHANGE] (#577)
Browse files Browse the repository at this point in the history
  • Loading branch information
chimurai authored May 7, 2021
1 parent ab944a8 commit 6429b64
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [v2.0.0](https:/chimurai/http-proxy-middleware/releases/tag/v2.0.0)

- chore(package): drop node 10 [BREAKING CHANGE] ([#577](https:/chimurai/http-proxy-middleware/pull/577))

## [v1.3.1](https:/chimurai/http-proxy-middleware/releases/tag/v1.3.1)

- fix(fix-request-body): make sure the content-type exists ([#578](https:/chimurai/http-proxy-middleware/pull/578)) ([oufeng](https:/oufeng))
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "http-proxy-middleware",
"version": "1.3.1",
"version": "2.0.0",
"description": "The one-liner node.js proxy middleware for connect, express and browser-sync",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -88,7 +88,7 @@
"micromatch": "^4.0.2"
},
"engines": {
"node": ">=8.0.0"
"node": ">=12.0.0"
},
"husky": {
"hooks": {
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"compilerOptions": {
"outDir": "./dist",
"lib": ["es2015"],
"lib": ["es2019", "es2020.bigint", "es2020.string", "es2020.symbol.wellknown"],
"module": "commonjs",
"moduleResolution": "node",
"target": "es2015",
"target": "es2019",
"incremental": true,
"declaration": true
},
Expand Down

0 comments on commit 6429b64

Please sign in to comment.