motia 0.0.2 → 0.0.14

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/README.md CHANGED
@@ -7,7 +7,7 @@ Motia Snap is a command-line interface tool to get your Motia project setup.
7
7
  To install the CLI globally, run:
8
8
 
9
9
  ```sh
10
- npm install -g @motiadev/snap
10
+ npm install -g motia
11
11
  ```
12
12
 
13
13
  ## Usage
@@ -116,7 +116,7 @@ const generateLockedData = async (projectDir) => {
116
116
  return lockedData;
117
117
  }
118
118
  catch (error) {
119
- console.error('Error generating locked data:', error);
119
+ console.error(error);
120
120
  throw Error('Failed to parse the project, generating locked data step failed');
121
121
  }
122
122
  };
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "motia",
3
- "version": "0.0.2",
3
+ "version": "0.0.14",
4
+ "license": "MIT",
4
5
  "bin": {
5
6
  "motia": "dist/src/cli.js"
6
7
  },
@@ -9,8 +10,8 @@
9
10
  "commander": "^13.0.0",
10
11
  "ts-node": "^10.9.2",
11
12
  "yaml": "^2.7.0",
12
- "@motiadev/core": "0.0.10",
13
- "@motiadev/workbench": "0.0.9"
13
+ "@motiadev/core": "0.0.14",
14
+ "@motiadev/workbench": "0.0.14"
14
15
  },
15
16
  "devDependencies": {
16
17
  "@types/jest": "^29.5.14",