@mastra/inngest 0.0.0-declaration-maps-20250730004430 → 0.0.0-dynamic-model-router-20251009204130
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/CHANGELOG.md +569 -2
- package/dist/index.cjs +571 -332
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +84 -57
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +573 -334
- package/dist/index.js.map +1 -1
- package/package.json +29 -15
- package/docker-compose.yaml +0 -10
- package/eslint.config.js +0 -6
- package/src/index.test.ts +0 -7815
- package/src/index.ts +0 -1784
- package/tsconfig.build.json +0 -9
- package/tsconfig.json +0 -5
- package/tsup.config.ts +0 -25
- package/vitest.config.ts +0 -14
package/tsconfig.build.json
DELETED
package/tsconfig.json
DELETED
package/tsup.config.ts
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { spawn } from 'child_process';
|
|
2
|
-
import { promisify } from 'util';
|
|
3
|
-
import { defineConfig } from 'tsup';
|
|
4
|
-
import type { Options } from 'tsup';
|
|
5
|
-
|
|
6
|
-
type Plugin = NonNullable<Options['plugins']>[number];
|
|
7
|
-
|
|
8
|
-
const exec = promisify(spawn);
|
|
9
|
-
|
|
10
|
-
export default defineConfig({
|
|
11
|
-
entry: ['src/index.ts'],
|
|
12
|
-
format: ['esm', 'cjs'],
|
|
13
|
-
clean: true,
|
|
14
|
-
dts: false,
|
|
15
|
-
splitting: true,
|
|
16
|
-
treeshake: {
|
|
17
|
-
preset: 'smallest',
|
|
18
|
-
},
|
|
19
|
-
sourcemap: true,
|
|
20
|
-
onSuccess: async () => {
|
|
21
|
-
await exec('pnpm', ['tsc', '-p', 'tsconfig.build.json'], {
|
|
22
|
-
stdio: 'inherit',
|
|
23
|
-
});
|
|
24
|
-
},
|
|
25
|
-
});
|
package/vitest.config.ts
DELETED