Skip to content

Commit

Permalink
Merge pull request #450 from mastra-ai/shane/global-cli
Browse files Browse the repository at this point in the history
Set up CLI package to run globally
  • Loading branch information
smthomas authored Oct 4, 2024
2 parents ef877bb + 586f4e6 commit 4b03157
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"name": "mastra",
"version": "0.1.2",
"version": "0.1.3",
"license": "MIT",
"description": "",
"main": "index.js",
"main": "dist/index.js",
"bin": {
"mastra": "./dist/index.js"
},
"files": [
"dist"
],
Expand Down
1 change: 1 addition & 0 deletions packages/cli/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#! /usr/bin/env node
import { Command } from 'commander';

import { dev } from './commands/dev.js';
Expand Down

0 comments on commit 4b03157

Please sign in to comment.