@memberjunction/cli 2.59.0 → 2.61.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 +66 -66
  2. package/package.json +4 -4
@@ -1,11 +1,22 @@
1
1
  {
2
2
  "commands": {
3
- "clean": {
3
+ "bump": {
4
4
  "aliases": [],
5
5
  "args": {},
6
- "description": "Resets the MemberJunction database to a pre-installation state",
6
+ "description": "Bumps MemberJunction dependency versions",
7
7
  "examples": [
8
- "<%= config.bin %> <%= command.id %>\n"
8
+ {
9
+ "command": "<%= config.bin %> <%= command.id %>",
10
+ "description": "Bump all @memberjunction/* dependencies in the current directory's package.json to the CLI version"
11
+ },
12
+ {
13
+ "command": "<%= config.bin %> <%= command.id %> -rdv",
14
+ "description": "Preview all recursive packages bumps without writing any changes."
15
+ },
16
+ {
17
+ "command": "<%= config.bin %> <%= command.id %> -rqt v2.10.0 | xargs -n1 -I{} npm install --prefix {}",
18
+ "description": "Recursively bump all @memberjunction/* dependencies in all packages to version v2.10.0 and output only the paths containing the updated package.json files. Pipe the output to xargs to run npm install in each directory and update the package-lock.json files as well."
19
+ }
9
20
  ],
10
21
  "flags": {
11
22
  "verbose": {
@@ -14,11 +25,40 @@
14
25
  "name": "verbose",
15
26
  "allowNo": false,
16
27
  "type": "boolean"
28
+ },
29
+ "recursive": {
30
+ "char": "r",
31
+ "description": "Bump version in current directory and all subdirectories",
32
+ "name": "recursive",
33
+ "allowNo": false,
34
+ "type": "boolean"
35
+ },
36
+ "tag": {
37
+ "char": "t",
38
+ "description": "Version tag to bump target for bump (e.g. v2.10.0), defaults to the CLI version",
39
+ "name": "tag",
40
+ "hasDynamicHelp": false,
41
+ "multiple": false,
42
+ "type": "option"
43
+ },
44
+ "quiet": {
45
+ "char": "q",
46
+ "description": "Only output paths for updated packages",
47
+ "name": "quiet",
48
+ "allowNo": false,
49
+ "type": "boolean"
50
+ },
51
+ "dry": {
52
+ "char": "d",
53
+ "description": "Dry run, do not write changes to package.json files",
54
+ "name": "dry",
55
+ "allowNo": false,
56
+ "type": "boolean"
17
57
  }
18
58
  },
19
59
  "hasDynamicHelp": false,
20
60
  "hiddenAliases": [],
21
- "id": "clean",
61
+ "id": "bump",
22
62
  "pluginAlias": "@memberjunction/cli",
23
63
  "pluginName": "@memberjunction/cli",
24
64
  "pluginType": "core",
@@ -28,28 +68,29 @@
28
68
  "relativePath": [
29
69
  "dist",
30
70
  "commands",
31
- "clean",
71
+ "bump",
32
72
  "index.js"
33
73
  ]
34
74
  },
35
- "codegen": {
75
+ "clean": {
36
76
  "aliases": [],
37
77
  "args": {},
38
- "description": "Run CodeGen to generate code and update metadata for MemberJunction",
78
+ "description": "Resets the MemberJunction database to a pre-installation state",
39
79
  "examples": [
40
80
  "<%= config.bin %> <%= command.id %>\n"
41
81
  ],
42
82
  "flags": {
43
- "skipdb": {
44
- "description": "Skip database migration",
45
- "name": "skipdb",
83
+ "verbose": {
84
+ "char": "v",
85
+ "description": "Enable additional logging",
86
+ "name": "verbose",
46
87
  "allowNo": false,
47
88
  "type": "boolean"
48
89
  }
49
90
  },
50
91
  "hasDynamicHelp": false,
51
92
  "hiddenAliases": [],
52
- "id": "codegen",
93
+ "id": "clean",
53
94
  "pluginAlias": "@memberjunction/cli",
54
95
  "pluginName": "@memberjunction/cli",
55
96
  "pluginType": "core",
@@ -59,29 +100,28 @@
59
100
  "relativePath": [
60
101
  "dist",
61
102
  "commands",
62
- "codegen",
103
+ "clean",
63
104
  "index.js"
64
105
  ]
65
106
  },
66
- "install": {
107
+ "codegen": {
67
108
  "aliases": [],
68
109
  "args": {},
69
- "description": "Install MemberJunction",
110
+ "description": "Run CodeGen to generate code and update metadata for MemberJunction",
70
111
  "examples": [
71
112
  "<%= config.bin %> <%= command.id %>\n"
72
113
  ],
73
114
  "flags": {
74
- "verbose": {
75
- "char": "v",
76
- "description": "Enable additional logging",
77
- "name": "verbose",
115
+ "skipdb": {
116
+ "description": "Skip database migration",
117
+ "name": "skipdb",
78
118
  "allowNo": false,
79
119
  "type": "boolean"
80
120
  }
81
121
  },
82
122
  "hasDynamicHelp": false,
83
123
  "hiddenAliases": [],
84
- "id": "install",
124
+ "id": "codegen",
85
125
  "pluginAlias": "@memberjunction/cli",
86
126
  "pluginName": "@memberjunction/cli",
87
127
  "pluginType": "core",
@@ -91,27 +131,16 @@
91
131
  "relativePath": [
92
132
  "dist",
93
133
  "commands",
94
- "install",
134
+ "codegen",
95
135
  "index.js"
96
136
  ]
97
137
  },
98
- "bump": {
138
+ "install": {
99
139
  "aliases": [],
100
140
  "args": {},
101
- "description": "Bumps MemberJunction dependency versions",
141
+ "description": "Install MemberJunction",
102
142
  "examples": [
103
- {
104
- "command": "<%= config.bin %> <%= command.id %>",
105
- "description": "Bump all @memberjunction/* dependencies in the current directory's package.json to the CLI version"
106
- },
107
- {
108
- "command": "<%= config.bin %> <%= command.id %> -rdv",
109
- "description": "Preview all recursive packages bumps without writing any changes."
110
- },
111
- {
112
- "command": "<%= config.bin %> <%= command.id %> -rqt v2.10.0 | xargs -n1 -I{} npm install --prefix {}",
113
- "description": "Recursively bump all @memberjunction/* dependencies in all packages to version v2.10.0 and output only the paths containing the updated package.json files. Pipe the output to xargs to run npm install in each directory and update the package-lock.json files as well."
114
- }
143
+ "<%= config.bin %> <%= command.id %>\n"
115
144
  ],
116
145
  "flags": {
117
146
  "verbose": {
@@ -120,40 +149,11 @@
120
149
  "name": "verbose",
121
150
  "allowNo": false,
122
151
  "type": "boolean"
123
- },
124
- "recursive": {
125
- "char": "r",
126
- "description": "Bump version in current directory and all subdirectories",
127
- "name": "recursive",
128
- "allowNo": false,
129
- "type": "boolean"
130
- },
131
- "tag": {
132
- "char": "t",
133
- "description": "Version tag to bump target for bump (e.g. v2.10.0), defaults to the CLI version",
134
- "name": "tag",
135
- "hasDynamicHelp": false,
136
- "multiple": false,
137
- "type": "option"
138
- },
139
- "quiet": {
140
- "char": "q",
141
- "description": "Only output paths for updated packages",
142
- "name": "quiet",
143
- "allowNo": false,
144
- "type": "boolean"
145
- },
146
- "dry": {
147
- "char": "d",
148
- "description": "Dry run, do not write changes to package.json files",
149
- "name": "dry",
150
- "allowNo": false,
151
- "type": "boolean"
152
152
  }
153
153
  },
154
154
  "hasDynamicHelp": false,
155
155
  "hiddenAliases": [],
156
- "id": "bump",
156
+ "id": "install",
157
157
  "pluginAlias": "@memberjunction/cli",
158
158
  "pluginName": "@memberjunction/cli",
159
159
  "pluginType": "core",
@@ -163,7 +163,7 @@
163
163
  "relativePath": [
164
164
  "dist",
165
165
  "commands",
166
- "bump",
166
+ "install",
167
167
  "index.js"
168
168
  ]
169
169
  },
@@ -577,5 +577,5 @@
577
577
  ]
578
578
  }
579
579
  },
580
- "version": "2.59.0"
580
+ "version": "2.61.0"
581
581
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memberjunction/cli",
3
- "version": "2.59.0",
3
+ "version": "2.61.0",
4
4
  "description": "MemberJunction command line tools",
5
5
  "keywords": [
6
6
  "oclif"
@@ -51,9 +51,9 @@
51
51
  },
52
52
  "dependencies": {
53
53
  "@inquirer/prompts": "^5.0.1",
54
- "@memberjunction/codegen-lib": "2.59.0",
55
- "@memberjunction/metadata-sync": "2.59.0",
56
- "@memberjunction/sqlserver-dataprovider": "2.59.0",
54
+ "@memberjunction/codegen-lib": "2.61.0",
55
+ "@memberjunction/metadata-sync": "2.61.0",
56
+ "@memberjunction/sqlserver-dataprovider": "2.61.0",
57
57
  "@oclif/core": "^3",
58
58
  "@oclif/plugin-help": "^6",
59
59
  "@oclif/plugin-version": "^2.0.17",