@trivikr-test/undici-http-handler 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +8 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trivikr-test/undici-http-handler",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Smithy-compatible HTTP handler using undici instead of Node.js native http",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/es/index.js",
@@ -11,7 +11,12 @@
11
11
  "build:es": "tsc -p tsconfig.es.json",
12
12
  "build:types": "tsc -p tsconfig.types.json",
13
13
  "test": "vitest run",
14
- "clean": "rm -rf dist"
14
+ "clean": "rm -rf dist",
15
+ "release": "yarn build && changeset publish"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/trivikr/trivikr-test-undici-http-handler.git"
15
20
  },
16
21
  "keywords": [
17
22
  "smithy",
@@ -29,6 +34,7 @@
29
34
  "undici": "^7.0.0"
30
35
  },
31
36
  "devDependencies": {
37
+ "@changesets/cli": "^2.31.0",
32
38
  "@types/node": "^20.0.0",
33
39
  "concurrently": "^9.0.0",
34
40
  "typescript": "~5.7.0",