mastra 0.1.35 → 0.1.36

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/dist/index.js CHANGED
@@ -7,7 +7,7 @@ import { migrate } from './commands/migrate.js';
7
7
  import { validateNextJsRoot } from './utils.js';
8
8
  const program = new Command();
9
9
  program
10
- .version('0.1.35')
10
+ .version('0.1.36')
11
11
  .description('CLI for Mastra')
12
12
  .action(() => {
13
13
  validateNextJsRoot();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mastra",
3
- "version": "0.1.35",
3
+ "version": "0.1.36",
4
4
  "license": "MIT",
5
5
  "description": "",
6
6
  "main": "dist/index.js",
@@ -9,7 +9,8 @@
9
9
  },
10
10
  "files": [
11
11
  "dist",
12
- "src/starter-files"
12
+ "src/starter-files",
13
+ "src/scripts"
13
14
  ],
14
15
  "keywords": [],
15
16
  "author": "",
@@ -0,0 +1,3 @@
1
+ console.log('Thank you for installing Mastra!');
2
+ console.log('Install @mastra/core in your Next.js project then run "mastra init" to get started.');
3
+ console.log('Visit https://mastra.ai/docs to read the docs.');