@mastra/inngest 0.0.0-declaration-maps-20250729231921 → 0.0.0-declaration-maps-20250730004430

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @mastra/inngest
2
2
 
3
- ## 0.0.0-declaration-maps-20250729231921
3
+ ## 0.0.0-declaration-maps-20250730004430
4
4
 
5
5
  ### Patch Changes
6
6
 
@@ -27,7 +27,7 @@
27
27
  - Updated dependencies [b8efbb9]
28
28
  - Updated dependencies [71466e7]
29
29
  - Updated dependencies [0c99fbe]
30
- - @mastra/core@0.0.0-declaration-maps-20250729231921
30
+ - @mastra/core@0.0.0-declaration-maps-20250730004430
31
31
 
32
32
  ## 0.11.6
33
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/inngest",
3
- "version": "0.0.0-declaration-maps-20250729231921",
3
+ "version": "0.0.0-declaration-maps-20250730004430",
4
4
  "description": "Mastra Inngest integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -38,16 +38,16 @@
38
38
  "tsup": "^8.5.0",
39
39
  "typescript": "^5.8.3",
40
40
  "vitest": "^3.2.4",
41
- "@internal/lint": "0.0.0-declaration-maps-20250729231921",
42
- "@mastra/core": "0.0.0-declaration-maps-20250729231921",
43
- "@mastra/libsql": "0.0.0-declaration-maps-20250729231921",
44
- "@mastra/deployer": "0.0.0-declaration-maps-20250729231921"
41
+ "@internal/lint": "0.0.0-declaration-maps-20250730004430",
42
+ "@mastra/core": "0.0.0-declaration-maps-20250730004430",
43
+ "@mastra/libsql": "0.0.0-declaration-maps-20250730004430",
44
+ "@mastra/deployer": "0.0.0-declaration-maps-20250730004430"
45
45
  },
46
46
  "peerDependencies": {
47
- "@mastra/core": "0.0.0-declaration-maps-20250729231921"
47
+ "@mastra/core": "0.0.0-declaration-maps-20250730004430"
48
48
  },
49
49
  "scripts": {
50
- "build": "tsup src/index.ts --format esm,cjs --no-dts --clean --treeshake=smallest --splitting --sourcemap && tsc -p tsconfig.build.json",
50
+ "build": "tsup --silent --config tsup.config.ts",
51
51
  "build:watch": "pnpm build --watch",
52
52
  "test": "docker-compose up -d && vitest run --no-isolate --bail=1 --retry=1 && docker-compose down",
53
53
  "lint": "eslint ."
package/tsup.config.ts ADDED
@@ -0,0 +1,25 @@
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
+ });