@tstdl/base 0.84.0 → 0.84.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.
@@ -82,7 +82,7 @@ let UndiciHttpClientAdapter = class UndiciHttpClientAdapter2 extends import_http
82
82
  try {
83
83
  const response = await (0, import_undici.request)(httpClientRequest.url, {
84
84
  method: httpClientRequest.method,
85
- signal: httpClientRequest.abortToken.asAbortSignal,
85
+ signal: httpClientRequest.abortToken.asAbortSignal(),
86
86
  headers: httpClientRequest.headers.asNormalizedObject(),
87
87
  body,
88
88
  headersTimeout: httpClientRequest.timeout,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tstdl/base",
3
- "version": "0.84.0",
3
+ "version": "0.84.1",
4
4
  "author": "Patrick Hein",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -8,14 +8,16 @@
8
8
  "type": "commonjs",
9
9
  "scripts": {
10
10
  "build": "tsc && tsc-alias",
11
- "build:watch": "tsc && (concurrently --raw 'tsc --watch' 'tsc-alias --watch')",
11
+ "build:watch": "concurrently --raw --kill-others npm:tsc:watch npm:tsc-alias:watch",
12
12
  "build:production": "rm -rf dist && npm run build && npm run build:production:cjs && npm run build:production:copy-files",
13
13
  "build:production:cjs": "esbuild `find dist \\( -name '*.js' -o -name '*.jsx' \\)` --outdir=dist --allow-overwrite --format=cjs",
14
14
  "build:production:copy-files": "cp package.json .eslintrc.json tsconfig.server.json dist/ && cp tsconfig.base.json dist/tsconfig.json && sed -i 's/\"type\": \"module\",/\"type\": \"commonjs\",/g' dist/package.json",
15
15
  "build:docs": "typedoc",
16
16
  "build:docs-watch": "typedoc --watch",
17
17
  "lint": "eslint -c .eslintrc.json --ext .ts .",
18
- "pub": "npm run build:production && rm -vf dist/test* && npm publish dist/"
18
+ "pub": "npm run build:production && rm -vf dist/test* && npm publish dist/",
19
+ "tsc:watch": "tsc --watch",
20
+ "tsc-alias:watch": "tsc-alias --watch"
19
21
  },
20
22
  "dependencies": {
21
23
  "luxon": "^3.3",