esbuild-node-externals
Advanced tools
Comparing version 1.13.0 to 1.13.1
# Changelog | ||
### [1.13.1](https://www.github.com/pradel/esbuild-node-externals/compare/v1.13.0...v1.13.1) (2024-05-07) | ||
### Bug Fixes | ||
* add esbuild 0.21 to allowed range ([#58](https://www.github.com/pradel/esbuild-node-externals/issues/58)) ([0409b3f](https://www.github.com/pradel/esbuild-node-externals/commit/0409b3f9fa4d89d858abc0d3a67621a76f314b94)) | ||
## [1.13.0](https://www.github.com/pradel/esbuild-node-externals/compare/v1.12.0...v1.13.0) (2024-02-12) | ||
@@ -4,0 +11,0 @@ |
{ | ||
"name": "esbuild-node-externals", | ||
"version": "1.13.0", | ||
"version": "1.13.1", | ||
"main": "dist/index.js", | ||
@@ -10,3 +10,4 @@ "typings": "dist/index.d.ts", | ||
"build": "tsc", | ||
"watch": "tsc --watch" | ||
"watch": "tsc --watch", | ||
"test": "node ./test/unit/index.test.mjs" | ||
}, | ||
@@ -34,7 +35,7 @@ "repository": "https://github.com/pradel/esbuild-node-externals.git", | ||
"peerDependencies": { | ||
"esbuild": "0.12 - 0.20" | ||
"esbuild": "0.12 - 0.21" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^18.15.10", | ||
"esbuild": "^0.20.0", | ||
"esbuild": "^0.21.0", | ||
"rimraf": "^4.4.1", | ||
@@ -41,0 +42,0 @@ "typescript": "^4.9.4" |
29711