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

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,9 +1,21 @@
1
1
  # @mastra/inngest
2
2
 
3
- ## 0.0.0-declaration-maps-20250729231921
3
+ ## 0.0.0-declaration-maps-20250730185206
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 7257912: dependencies updates:
8
+ - Updated dependency [`inngest@^3.40.1` ↗︎](https://www.npmjs.com/package/inngest/v/3.40.1) (from `^3.40.0`, in `dependencies`)
9
+ - Updated dependencies [33dcb07]
10
+ - Updated dependencies [d30b1a0]
11
+ - Updated dependencies [bff87f7]
12
+ - @mastra/core@0.0.0-declaration-maps-20250730185206
13
+
14
+ ## 0.11.7
15
+
16
+ ### Patch Changes
17
+
18
+ - f42c4c2: update peer deps for packages to latest core range
7
19
  - Updated dependencies [510e2c8]
8
20
  - Updated dependencies [2f72fb2]
9
21
  - Updated dependencies [27cc97a]
@@ -27,7 +39,14 @@
27
39
  - Updated dependencies [b8efbb9]
28
40
  - Updated dependencies [71466e7]
29
41
  - Updated dependencies [0c99fbe]
30
- - @mastra/core@0.0.0-declaration-maps-20250729231921
42
+ - @mastra/core@0.12.0
43
+
44
+ ## 0.11.7-alpha.0
45
+
46
+ ### Patch Changes
47
+
48
+ - f42c4c2: update peer deps for packages to latest core range
49
+ - @mastra/core@0.12.0-alpha.5
31
50
 
32
51
  ## 0.11.6
33
52
 
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-20250730185206",
4
4
  "description": "Mastra Inngest integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -21,7 +21,7 @@
21
21
  "dependencies": {
22
22
  "@inngest/realtime": "^0.3.1",
23
23
  "@opentelemetry/api": "^1.9.0",
24
- "inngest": "^3.40.0",
24
+ "inngest": "^3.40.1",
25
25
  "zod": "^3.25.67"
26
26
  },
27
27
  "devDependencies": {
@@ -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-20250730185206",
42
+ "@mastra/libsql": "0.0.0-declaration-maps-20250730185206",
43
+ "@mastra/core": "0.0.0-declaration-maps-20250730185206",
44
+ "@mastra/deployer": "0.0.0-declaration-maps-20250730185206"
45
45
  },
46
46
  "peerDependencies": {
47
- "@mastra/core": "0.0.0-declaration-maps-20250729231921"
47
+ "@mastra/core": "0.0.0-declaration-maps-20250730185206"
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/tsconfig.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "extends": "../../tsconfig.node.json",
3
- "include": ["src/**/*"],
3
+ "include": ["src/**/*", "tsup.config.ts"],
4
4
  "exclude": ["node_modules", "**/*.test.ts"]
5
5
  }
package/tsup.config.ts ADDED
@@ -0,0 +1,22 @@
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
+ });