@memberjunction/cli 2.10.0 → 2.12.0
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 +4 -4
- package/oclif.manifest.json +9 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ $ npm install -g @memberjunction/cli
|
|
|
12
12
|
$ mj COMMAND
|
|
13
13
|
running command...
|
|
14
14
|
$ mj (--version)
|
|
15
|
-
@memberjunction/cli/2.
|
|
15
|
+
@memberjunction/cli/2.12.0 linux-x64 node-v20.18.0
|
|
16
16
|
$ mj --help [COMMAND]
|
|
17
17
|
USAGE
|
|
18
18
|
$ mj COMMAND
|
|
@@ -45,7 +45,7 @@ EXAMPLES
|
|
|
45
45
|
$ mj clean
|
|
46
46
|
```
|
|
47
47
|
|
|
48
|
-
_See code: [src/commands/clean/index.ts](https://github.com/MemberJunction/MJ/blob/v2.
|
|
48
|
+
_See code: [src/commands/clean/index.ts](https://github.com/MemberJunction/MJ/blob/v2.12.0/src/commands/clean/index.ts)_
|
|
49
49
|
|
|
50
50
|
## `mj help [COMMAND]`
|
|
51
51
|
|
|
@@ -85,7 +85,7 @@ EXAMPLES
|
|
|
85
85
|
$ mj install
|
|
86
86
|
```
|
|
87
87
|
|
|
88
|
-
_See code: [src/commands/install/index.ts](https://github.com/MemberJunction/MJ/blob/v2.
|
|
88
|
+
_See code: [src/commands/install/index.ts](https://github.com/MemberJunction/MJ/blob/v2.12.0/src/commands/install/index.ts)_
|
|
89
89
|
|
|
90
90
|
## `mj migrate`
|
|
91
91
|
|
|
@@ -105,7 +105,7 @@ EXAMPLES
|
|
|
105
105
|
$ mj migrate
|
|
106
106
|
```
|
|
107
107
|
|
|
108
|
-
_See code: [src/commands/migrate/index.ts](https://github.com/MemberJunction/MJ/blob/v2.
|
|
108
|
+
_See code: [src/commands/migrate/index.ts](https://github.com/MemberJunction/MJ/blob/v2.12.0/src/commands/migrate/index.ts)_
|
|
109
109
|
|
|
110
110
|
## `mj version`
|
|
111
111
|
|
package/oclif.manifest.json
CHANGED
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"index.js"
|
|
33
33
|
]
|
|
34
34
|
},
|
|
35
|
-
"
|
|
35
|
+
"migrate": {
|
|
36
36
|
"aliases": [],
|
|
37
37
|
"args": {},
|
|
38
|
-
"description": "
|
|
38
|
+
"description": "Migrate MemberJunction database to latest version",
|
|
39
39
|
"examples": [
|
|
40
40
|
"<%= config.bin %> <%= command.id %>\n"
|
|
41
41
|
],
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
},
|
|
51
51
|
"hasDynamicHelp": false,
|
|
52
52
|
"hiddenAliases": [],
|
|
53
|
-
"id": "
|
|
53
|
+
"id": "migrate",
|
|
54
54
|
"pluginAlias": "@memberjunction/cli",
|
|
55
55
|
"pluginName": "@memberjunction/cli",
|
|
56
56
|
"pluginType": "core",
|
|
@@ -60,14 +60,14 @@
|
|
|
60
60
|
"relativePath": [
|
|
61
61
|
"dist",
|
|
62
62
|
"commands",
|
|
63
|
-
"
|
|
63
|
+
"migrate",
|
|
64
64
|
"index.js"
|
|
65
65
|
]
|
|
66
66
|
},
|
|
67
|
-
"
|
|
67
|
+
"install": {
|
|
68
68
|
"aliases": [],
|
|
69
69
|
"args": {},
|
|
70
|
-
"description": "
|
|
70
|
+
"description": "Install MemberJunction",
|
|
71
71
|
"examples": [
|
|
72
72
|
"<%= config.bin %> <%= command.id %>\n"
|
|
73
73
|
],
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
},
|
|
83
83
|
"hasDynamicHelp": false,
|
|
84
84
|
"hiddenAliases": [],
|
|
85
|
-
"id": "
|
|
85
|
+
"id": "install",
|
|
86
86
|
"pluginAlias": "@memberjunction/cli",
|
|
87
87
|
"pluginName": "@memberjunction/cli",
|
|
88
88
|
"pluginType": "core",
|
|
@@ -92,10 +92,10 @@
|
|
|
92
92
|
"relativePath": [
|
|
93
93
|
"dist",
|
|
94
94
|
"commands",
|
|
95
|
-
"
|
|
95
|
+
"install",
|
|
96
96
|
"index.js"
|
|
97
97
|
]
|
|
98
98
|
}
|
|
99
99
|
},
|
|
100
|
-
"version": "2.
|
|
100
|
+
"version": "2.12.0"
|
|
101
101
|
}
|