@memberjunction/cli 1.5.1 → 1.5.3

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
@@ -12,7 +12,7 @@ $ npm install -g @memberjunction/cli
12
12
  $ mj COMMAND
13
13
  running command...
14
14
  $ mj (--version)
15
- @memberjunction/cli/1.5.1 linux-x64 node-v20.14.0
15
+ @memberjunction/cli/1.5.3 linux-x64 node-v20.14.0
16
16
  $ mj --help [COMMAND]
17
17
  USAGE
18
18
  $ mj COMMAND
@@ -43,7 +43,7 @@ DESCRIPTION
43
43
  Display help for mj.
44
44
  ```
45
45
 
46
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.0.21/src/commands/help.ts)_
46
+ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.0/src/commands/help.ts)_
47
47
 
48
48
  ## `mj install`
49
49
 
@@ -63,7 +63,7 @@ EXAMPLES
63
63
  $ mj install
64
64
  ```
65
65
 
66
- _See code: [src/commands/install/index.ts](https://github.com/MemberJunction/MJ/blob/v1.5.1/src/commands/install/index.ts)_
66
+ _See code: [src/commands/install/index.ts](https://github.com/MemberJunction/MJ/blob/v1.5.3/src/commands/install/index.ts)_
67
67
 
68
68
  ## `mj version`
69
69
 
@@ -83,5 +83,5 @@ FLAG DESCRIPTIONS
83
83
  Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
84
84
  ```
85
85
 
86
- _See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v2.0.17/src/commands/version.ts)_
86
+ _See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v2.2.2/src/commands/version.ts)_
87
87
  <!-- commandsstop -->
@@ -133,16 +133,12 @@ CONFIG_FILE='config.json'
133
133
  fs.writeFileSync(node_path_1.default.join(CODEGEN_DIR, '.env'), codeGenENV);
134
134
  this.log(' Running npm link for GeneratedEntities...');
135
135
  (0, node_child_process_1.execSync)('npm link ../GeneratedEntities', { stdio: 'inherit', cwd: CODEGEN_DIR });
136
- this.log(' Running npm link for GeneratedActions...');
137
- (0, node_child_process_1.execSync)('npm link ../GeneratedActions', { stdio: 'inherit', cwd: CODEGEN_DIR });
138
136
  //*******************************************************************
139
137
  // Process MJAPI
140
138
  //*******************************************************************
141
139
  this.log('\n\nBootstrapping MJAPI...');
142
- this.log(' Running npm link for GeneratedEntities...');
143
- (0, node_child_process_1.execSync)('npm link ../GeneratedEntities', { stdio: 'inherit', cwd: MJAPI_DIR });
144
- this.log(' Running npm link for GeneratedActions...');
145
- (0, node_child_process_1.execSync)('npm link ../GeneratedActions', { stdio: 'inherit', cwd: MJAPI_DIR });
140
+ this.log(' Running npm link for generated code...');
141
+ (0, node_child_process_1.execSync)('npm link ../GeneratedEntities ../GeneratedActions', { stdio: 'inherit', cwd: MJAPI_DIR });
146
142
  this.log(' Setting up MJAPI .env file...');
147
143
  const mjAPIENV = `#Database Setup
148
144
  DB_HOST='${this.userConfig.dbUrl}'
@@ -204,8 +200,6 @@ CONFIG_FILE='config.json'
204
200
  // keep on going with MJ Explorer - do the rest of the stuff
205
201
  this.log(' Running npm link for GeneratedEntities...');
206
202
  (0, node_child_process_1.execSync)('npm link ../GeneratedEntities', { stdio: 'inherit', cwd: MJEXPLORER_DIR });
207
- this.log(' Running npm link for GeneratedActions...');
208
- (0, node_child_process_1.execSync)('npm link ../GeneratedActions', { stdio: 'inherit', cwd: MJEXPLORER_DIR });
209
203
  this.log('Installation complete!');
210
204
  }
211
205
  async getUserConfiguration() {
@@ -33,5 +33,5 @@
33
33
  ]
34
34
  }
35
35
  },
36
- "version": "1.5.1"
36
+ "version": "1.5.3"
37
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memberjunction/cli",
3
- "version": "1.5.1",
3
+ "version": "1.5.3",
4
4
  "description": "MemberJunction command line tools",
5
5
  "keywords": [
6
6
  "oclif"
@@ -57,9 +57,9 @@
57
57
  "@oclif/prettier-config": "^0.2.1",
58
58
  "@types/fs-extra": "^11.0.4",
59
59
  "oclif": "^4",
60
- "rimraf": "^5.0.5",
60
+ "rimraf": "5.0.7",
61
61
  "ts-node": "^10.9.2",
62
- "typescript": "^5"
62
+ "typescript": "^5.4.5"
63
63
  },
64
64
  "engines": {
65
65
  "node": ">=20.0.0"