@mailmodo/cli 0.0.1-beta.pr3.5 → 0.0.2-beta.pr4.6

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.
@@ -0,0 +1,6 @@
1
+ import { Command } from '@oclif/core';
2
+ export default class Login extends Command {
3
+ static description: string;
4
+ static examples: string[];
5
+ run(): Promise<void>;
6
+ }
@@ -0,0 +1,9 @@
1
+ import { Command } from '@oclif/core';
2
+ export default class Login extends Command {
3
+ static description = 'Login to Mailmodo';
4
+ static examples = ['<%= config.bin %> <%= command.id %>'];
5
+ async run() {
6
+ await this.parse(Login);
7
+ this.log('Login to Mailmodo');
8
+ }
9
+ }
@@ -0,0 +1 @@
1
+ export { run } from '@oclif/core';
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+ export { run } from '@oclif/core';
@@ -1,4 +1,29 @@
1
1
  {
2
- "commands": {},
3
- "version": "0.0.1-beta.pr3.5"
2
+ "commands": {
3
+ "login": {
4
+ "aliases": [],
5
+ "args": {},
6
+ "description": "Login to Mailmodo",
7
+ "examples": [
8
+ "<%= config.bin %> <%= command.id %>"
9
+ ],
10
+ "flags": {},
11
+ "hasDynamicHelp": false,
12
+ "hiddenAliases": [],
13
+ "id": "login",
14
+ "pluginAlias": "@mailmodo/cli",
15
+ "pluginName": "@mailmodo/cli",
16
+ "pluginType": "core",
17
+ "strict": true,
18
+ "enableJsonFlag": false,
19
+ "isESM": true,
20
+ "relativePath": [
21
+ "dist",
22
+ "commands",
23
+ "login",
24
+ "index.js"
25
+ ]
26
+ }
27
+ },
28
+ "version": "0.0.2-beta.pr4.6"
4
29
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mailmodo/cli",
3
3
  "description": "Email lifecycle automation for the AI-native builder generation.",
4
- "version": "0.0.1-beta.pr3.5",
4
+ "version": "0.0.2-beta.pr4.6",
5
5
  "author": "provishalk",
6
6
  "bin": {
7
7
  "mailmodo": "bin/run.js"
@@ -62,7 +62,7 @@
62
62
  },
63
63
  "repository": "Mailmodo/mailmodo-cli",
64
64
  "scripts": {
65
- "build": "shx rm -rf dist && tsc -b",
65
+ "build": "shx rm -rf dist tsconfig.tsbuildinfo && tsc -b",
66
66
  "lint": "eslint",
67
67
  "postpack": "shx rm -f oclif.manifest.json",
68
68
  "posttest": "npm run lint",