@mastra/dane 0.0.2-alpha.65 → 0.0.2-alpha.67
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.
|
@@ -3,7 +3,7 @@ import chalk from 'chalk';
|
|
|
3
3
|
import child_process from 'node:child_process';
|
|
4
4
|
import util from 'node:util';
|
|
5
5
|
import { z } from 'zod';
|
|
6
|
-
import { slack } from '../tools/mcp';
|
|
6
|
+
import { slack } from '../tools/mcp.js';
|
|
7
7
|
const exec = util.promisify(child_process.exec);
|
|
8
8
|
export const linkCheckerWorkflow = new Workflow({
|
|
9
9
|
name: 'link-checker',
|
|
@@ -19,13 +19,14 @@ const getPacakgesToPublish = new Step({
|
|
|
19
19
|
throw new Error('Agent not found');
|
|
20
20
|
}
|
|
21
21
|
const result = await agent.generate(`
|
|
22
|
-
Can you tell me which packages within the packages and integrations directory need to be published to npm?
|
|
22
|
+
Can you tell me which packages within the packages, deployers, and integrations directory need to be published to npm?
|
|
23
23
|
`);
|
|
24
24
|
const resultObj = await agent.generate(`
|
|
25
25
|
ONLY RETURN DATA IF WE HAVE PACKAGES TO PUBLISH. If we do not, return empty arrays.
|
|
26
26
|
Can you format this for me ${result.text}?
|
|
27
27
|
@mastra/core must be first. mastra must be second.
|
|
28
28
|
create-mastra is a package (not an integration) and should be listed in packages array.
|
|
29
|
+
deployers should be listed after packages.
|
|
29
30
|
@mastra/dane should be listed after packages and integrations.
|
|
30
31
|
`, {
|
|
31
32
|
output: z.object({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/dane",
|
|
3
|
-
"version": "0.0.2-alpha.
|
|
3
|
+
"version": "0.0.2-alpha.67",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -41,11 +41,11 @@
|
|
|
41
41
|
"zod": "^3.24.0",
|
|
42
42
|
"@mastra/core": "0.1.27-alpha.66",
|
|
43
43
|
"@mastra/engine": "0.0.5-alpha.60",
|
|
44
|
-
"@mastra/firecrawl": "1.0.4-alpha.54",
|
|
45
44
|
"@mastra/github": "1.0.3-alpha.50",
|
|
46
45
|
"@mastra/memory": "0.0.2-alpha.46",
|
|
47
|
-
"@mastra/rag": "0.0.2-alpha.52",
|
|
48
46
|
"@mastra/stabilityai": "1.0.1-alpha.41",
|
|
47
|
+
"@mastra/firecrawl": "1.0.4-alpha.54",
|
|
48
|
+
"@mastra/rag": "0.0.2-alpha.52",
|
|
49
49
|
"@mastra/mcp": "0.0.1-alpha.6"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|