@mastra/inngest 0.0.0-mssql-store-20250804200341 → 0.0.0-netlify-no-bundle-20251127120354
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 +1032 -2
- package/dist/index.cjs +1101 -616
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +178 -112
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1104 -619
- package/dist/index.js.map +1 -1
- package/package.json +38 -19
- 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 -22
- package/vitest.config.ts +0 -14
package/tsconfig.build.json
DELETED
package/tsconfig.json
DELETED
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