@mastra/dane 0.0.2-alpha.30 → 0.0.2-alpha.32
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.
|
@@ -109,7 +109,7 @@ export const activeDistTag = createTool({
|
|
|
109
109
|
const pkgJson = JSON.parse(readFileSync(path.join(context.packagePath, 'package.json'), 'utf-8'));
|
|
110
110
|
const version = pkgJson.version;
|
|
111
111
|
console.log(chalk.green(`Setting active tag to latest for ${pkgJson.name}@${version}`));
|
|
112
|
-
const p = execa(`npm`, ['dist-tag', `${pkgJson.name}@${version}`, `latest`], {
|
|
112
|
+
const p = execa(`npm`, ['dist-tag', `add`, `${pkgJson.name}@${version}`, `latest`], {
|
|
113
113
|
stdio: 'inherit',
|
|
114
114
|
reject: false,
|
|
115
115
|
});
|
|
@@ -93,7 +93,7 @@ const assemblePackages = new Step({
|
|
|
93
93
|
console.error(e);
|
|
94
94
|
}
|
|
95
95
|
});
|
|
96
|
-
packagesToBuild.add(
|
|
96
|
+
packagesToBuild.add(path.join(process.cwd(), 'examples', 'dane'));
|
|
97
97
|
}
|
|
98
98
|
const pkgSet = Array.from(packagesToBuild.keys());
|
|
99
99
|
if (!packagesToBuild.size) {
|
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.32",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
"sqlite3": "^5.1.7",
|
|
39
39
|
"typescript": "^5.5.4",
|
|
40
40
|
"zod": "^3.24.0",
|
|
41
|
-
"@mastra/core": "0.1.27-alpha.46",
|
|
42
41
|
"@mastra/firecrawl": "1.0.4-alpha.32",
|
|
43
42
|
"@mastra/engine": "0.0.5-alpha.40",
|
|
44
|
-
"@mastra/
|
|
43
|
+
"@mastra/core": "0.1.27-alpha.46",
|
|
45
44
|
"@mastra/memory": "0.0.2-alpha.26",
|
|
46
|
-
"@mastra/
|
|
47
|
-
"@mastra/rag": "0.0.2-alpha.30"
|
|
45
|
+
"@mastra/github": "1.0.3-alpha.30",
|
|
46
|
+
"@mastra/rag": "0.0.2-alpha.30",
|
|
47
|
+
"@mastra/stabilityai": "1.0.1-alpha.21"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"build": "npx tsc",
|