@memberjunction/cli 2.46.0 → 2.48.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.
Files changed (2) hide show
  1. package/oclif.manifest.json +28 -28
  2. package/package.json +2 -2
@@ -72,25 +72,24 @@
72
72
  "index.js"
73
73
  ]
74
74
  },
75
- "clean": {
75
+ "codegen": {
76
76
  "aliases": [],
77
77
  "args": {},
78
- "description": "Resets the MemberJunction database to a pre-installation state",
78
+ "description": "Run CodeGen to generate code and update metadata for MemberJunction",
79
79
  "examples": [
80
80
  "<%= config.bin %> <%= command.id %>\n"
81
81
  ],
82
82
  "flags": {
83
- "verbose": {
84
- "char": "v",
85
- "description": "Enable additional logging",
86
- "name": "verbose",
83
+ "skipdb": {
84
+ "description": "Skip database migration",
85
+ "name": "skipdb",
87
86
  "allowNo": false,
88
87
  "type": "boolean"
89
88
  }
90
89
  },
91
90
  "hasDynamicHelp": false,
92
91
  "hiddenAliases": [],
93
- "id": "clean",
92
+ "id": "codegen",
94
93
  "pluginAlias": "@memberjunction/cli",
95
94
  "pluginName": "@memberjunction/cli",
96
95
  "pluginType": "core",
@@ -100,7 +99,7 @@
100
99
  "relativePath": [
101
100
  "dist",
102
101
  "commands",
103
- "clean",
102
+ "codegen",
104
103
  "index.js"
105
104
  ]
106
105
  },
@@ -136,10 +135,10 @@
136
135
  "index.js"
137
136
  ]
138
137
  },
139
- "migrate": {
138
+ "clean": {
140
139
  "aliases": [],
141
140
  "args": {},
142
- "description": "Migrate MemberJunction database to latest version",
141
+ "description": "Resets the MemberJunction database to a pre-installation state",
143
142
  "examples": [
144
143
  "<%= config.bin %> <%= command.id %>\n"
145
144
  ],
@@ -150,19 +149,11 @@
150
149
  "name": "verbose",
151
150
  "allowNo": false,
152
151
  "type": "boolean"
153
- },
154
- "tag": {
155
- "char": "t",
156
- "description": "Version tag to use for running remote migrations",
157
- "name": "tag",
158
- "hasDynamicHelp": false,
159
- "multiple": false,
160
- "type": "option"
161
152
  }
162
153
  },
163
154
  "hasDynamicHelp": false,
164
155
  "hiddenAliases": [],
165
- "id": "migrate",
156
+ "id": "clean",
166
157
  "pluginAlias": "@memberjunction/cli",
167
158
  "pluginName": "@memberjunction/cli",
168
159
  "pluginType": "core",
@@ -172,28 +163,37 @@
172
163
  "relativePath": [
173
164
  "dist",
174
165
  "commands",
175
- "migrate",
166
+ "clean",
176
167
  "index.js"
177
168
  ]
178
169
  },
179
- "codegen": {
170
+ "migrate": {
180
171
  "aliases": [],
181
172
  "args": {},
182
- "description": "Run CodeGen to generate code and update metadata for MemberJunction",
173
+ "description": "Migrate MemberJunction database to latest version",
183
174
  "examples": [
184
175
  "<%= config.bin %> <%= command.id %>\n"
185
176
  ],
186
177
  "flags": {
187
- "skipdb": {
188
- "description": "Skip database migration",
189
- "name": "skipdb",
178
+ "verbose": {
179
+ "char": "v",
180
+ "description": "Enable additional logging",
181
+ "name": "verbose",
190
182
  "allowNo": false,
191
183
  "type": "boolean"
184
+ },
185
+ "tag": {
186
+ "char": "t",
187
+ "description": "Version tag to use for running remote migrations",
188
+ "name": "tag",
189
+ "hasDynamicHelp": false,
190
+ "multiple": false,
191
+ "type": "option"
192
192
  }
193
193
  },
194
194
  "hasDynamicHelp": false,
195
195
  "hiddenAliases": [],
196
- "id": "codegen",
196
+ "id": "migrate",
197
197
  "pluginAlias": "@memberjunction/cli",
198
198
  "pluginName": "@memberjunction/cli",
199
199
  "pluginType": "core",
@@ -203,10 +203,10 @@
203
203
  "relativePath": [
204
204
  "dist",
205
205
  "commands",
206
- "codegen",
206
+ "migrate",
207
207
  "index.js"
208
208
  ]
209
209
  }
210
210
  },
211
- "version": "2.46.0"
211
+ "version": "2.48.0"
212
212
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memberjunction/cli",
3
- "version": "2.46.0",
3
+ "version": "2.48.0",
4
4
  "description": "MemberJunction command line tools",
5
5
  "keywords": [
6
6
  "oclif"
@@ -50,7 +50,7 @@
50
50
  },
51
51
  "dependencies": {
52
52
  "@inquirer/prompts": "^5.0.1",
53
- "@memberjunction/codegen-lib": "2.46.0",
53
+ "@memberjunction/codegen-lib": "2.48.0",
54
54
  "@oclif/core": "^3",
55
55
  "@oclif/plugin-help": "^6",
56
56
  "@oclif/plugin-version": "^2.0.17",