@mastra/dane 0.0.2-alpha.23 → 0.0.2-alpha.24
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.
|
@@ -59,7 +59,7 @@ export async function publishPackages() {
|
|
|
59
59
|
const pkgSet = Array.from(packagesToBuild.keys());
|
|
60
60
|
if (!packagesToBuild.size) {
|
|
61
61
|
console.error(chalk.red('No packages to build.'));
|
|
62
|
-
process.exit(
|
|
62
|
+
process.exit(0);
|
|
63
63
|
}
|
|
64
64
|
let res = await agent.generate(`
|
|
65
65
|
Here are the packages that need to be built: ${pkgSet.join(',')}.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"execa.d.ts","sourceRoot":"","sources":["../../../src/mastra/tools/execa.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAYxB,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;iDA4BpB,CAAC;AAEH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;iDA8BpB,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;
|
|
1
|
+
{"version":3,"file":"execa.d.ts","sourceRoot":"","sources":["../../../src/mastra/tools/execa.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAYxB,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;iDA4BpB,CAAC;AAEH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;iDA8BpB,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;6IA8B9B,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;6IA0B/B,CAAC"}
|
|
@@ -84,11 +84,14 @@ export const pnpmChangesetStatus = createTool({
|
|
|
84
84
|
execute: async () => {
|
|
85
85
|
try {
|
|
86
86
|
console.log('Checking');
|
|
87
|
-
const { stdout } = await execa('pnpm', ['publish', '-r', '--dry-run', '--no-git-checks']
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
87
|
+
const { stdout } = await execa('pnpm', ['publish', '-r', '--dry-run', '--no-git-checks'], {
|
|
88
|
+
all: true,
|
|
89
|
+
// We want to see stderr too since pnpm sometimes puts important info there
|
|
90
|
+
stderr: 'inherit',
|
|
91
|
+
});
|
|
92
|
+
const lines = stdout.split('\n');
|
|
93
|
+
const filteredLines = lines.filter(line => line.startsWith('+'));
|
|
94
|
+
const packages = filteredLines.map(line => line.trim().substring(2).split('@').slice(0, -1).join('@'));
|
|
92
95
|
return { message: packages };
|
|
93
96
|
}
|
|
94
97
|
catch (e) {
|
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.24",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -39,11 +39,11 @@
|
|
|
39
39
|
"typescript": "^5.5.4",
|
|
40
40
|
"zod": "^3.24.0",
|
|
41
41
|
"@mastra/core": "0.1.27-alpha.46",
|
|
42
|
-
"@mastra/firecrawl": "1.0.4-alpha.32",
|
|
43
42
|
"@mastra/engine": "0.0.5-alpha.40",
|
|
43
|
+
"@mastra/firecrawl": "1.0.4-alpha.32",
|
|
44
44
|
"@mastra/memory": "0.0.2-alpha.26",
|
|
45
|
-
"@mastra/stabilityai": "1.0.1-alpha.21",
|
|
46
45
|
"@mastra/github": "1.0.3-alpha.30",
|
|
46
|
+
"@mastra/stabilityai": "1.0.1-alpha.21",
|
|
47
47
|
"@mastra/rag": "0.0.2-alpha.30"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|