@mastra/inngest 0.0.0-new-scorer-api-20250801075530 → 0.0.0-partial-response-backport-20251204204441

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.
@@ -1,9 +0,0 @@
1
- {
2
- "extends": ["./tsconfig.json", "../../tsconfig.build.json"],
3
- "compilerOptions": {
4
- "outDir": "./dist",
5
- "rootDir": "./src"
6
- },
7
- "include": ["src/**/*"],
8
- "exclude": ["node_modules", "**/*.test.ts", "src/**/*.mock.ts"]
9
- }
package/tsconfig.json DELETED
@@ -1,5 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.node.json",
3
- "include": ["src/**/*", "tsup.config.ts"],
4
- "exclude": ["node_modules", "**/*.test.ts"]
5
- }
package/tsup.config.ts DELETED
@@ -1,22 +0,0 @@
1
- import { spawn } from 'child_process';
2
- import { promisify } from 'util';
3
- import { defineConfig } from 'tsup';
4
-
5
- const exec = promisify(spawn);
6
-
7
- export default defineConfig({
8
- entry: ['src/index.ts'],
9
- format: ['esm', 'cjs'],
10
- clean: true,
11
- dts: false,
12
- splitting: true,
13
- treeshake: {
14
- preset: 'smallest',
15
- },
16
- sourcemap: true,
17
- onSuccess: async () => {
18
- await exec('pnpm', ['tsc', '-p', 'tsconfig.build.json'], {
19
- stdio: 'inherit',
20
- });
21
- },
22
- });
package/vitest.config.ts DELETED
@@ -1,14 +0,0 @@
1
- import { defineConfig } from 'vitest/config';
2
-
3
- export default defineConfig({
4
- test: {
5
- globals: true,
6
- include: ['src/**/*.test.ts'],
7
- pool: 'threads',
8
- poolOptions: {
9
- threads: {
10
- singleThread: true,
11
- },
12
- },
13
- },
14
- });