@tstdl/base 0.92.39 → 0.92.41

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.
package/file/mime-type.js CHANGED
@@ -11,10 +11,10 @@ export function getMimeTypeExtensions(mimeType) {
11
11
  }
12
12
  async function spawnFileCommand(args, file) {
13
13
  const process = await spawnCommand('file', args, { stdinPipeOptions: { preventCancel: true } });
14
- const { code } = await process.wait();
15
14
  if (isDefined(file)) {
16
15
  await process.write(file);
17
16
  }
17
+ const { code } = await process.wait();
18
18
  if (code != 0) {
19
19
  const errorOutput = await process.readError();
20
20
  throw new Error(errorOutput.trim());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tstdl/base",
3
- "version": "0.92.39",
3
+ "version": "0.92.41",
4
4
  "author": "Patrick Hein",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -85,7 +85,7 @@
85
85
  "./reflection": "./reflection/index.js",
86
86
  "./rpc": "./rpc/index.js",
87
87
  "./rpc/endpoints": "./rpc/endpoints/index.js",
88
- "./rxjs": "./rxjs-utils/index.js",
88
+ "./rxjs-utils": "./rxjs-utils/index.js",
89
89
  "./schema": "./schema/index.js",
90
90
  "./schema/converters": "./schema/converters/index.js",
91
91
  "./search-index": "./search-index/index.js",
@@ -118,8 +118,8 @@
118
118
  "./utils/string": "./utils/string/index.js"
119
119
  },
120
120
  "dependencies": {
121
- "@google-cloud/storage": "^7.15.0",
122
- "@google-cloud/vertexai": "^1.9.2",
121
+ "@google-cloud/storage": "7.15",
122
+ "@google-cloud/vertexai": "1.9",
123
123
  "disposablestack": "1.1",
124
124
  "luxon": "^3.5",
125
125
  "reflect-metadata": "^0.2",
@@ -128,7 +128,7 @@
128
128
  },
129
129
  "devDependencies": {
130
130
  "@mxssfd/typedoc-theme": "1.1",
131
- "@stylistic/eslint-plugin": "2.13",
131
+ "@stylistic/eslint-plugin": "3.0",
132
132
  "@types/chroma-js": "2.4",
133
133
  "@types/koa__router": "12.0",
134
134
  "@types/luxon": "3.4",
@@ -137,7 +137,7 @@
137
137
  "@types/node": "22",
138
138
  "@types/nodemailer": "6.4",
139
139
  "@types/pg": "8.11",
140
- "@typescript-eslint/eslint-plugin": "8.21",
140
+ "@typescript-eslint/eslint-plugin": "8.22",
141
141
  "concurrently": "9.1",
142
142
  "drizzle-kit": "0.30",
143
143
  "eslint": "8.57",
@@ -159,14 +159,14 @@
159
159
  "@zxcvbn-ts/language-de": "^3.0",
160
160
  "@zxcvbn-ts/language-en": "^3.0",
161
161
  "chroma-js": "^2.6",
162
- "drizzle-orm": "^0.38",
162
+ "drizzle-orm": "^0.39",
163
163
  "handlebars": "^4.7",
164
164
  "koa": "^2.15",
165
165
  "minio": "^8.0",
166
166
  "mjml": "^4.15",
167
- "mongodb": "^6.12",
167
+ "mongodb": "^6.13",
168
168
  "nodemailer": "^6.10",
169
- "pg": "8.13",
169
+ "pg": "^8.13",
170
170
  "playwright": "^1.50",
171
171
  "preact": "^10.25",
172
172
  "preact-render-to-string": "^6.5",