@provartesting/provardx-cli 1.2.5 → 1.2.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.
@@ -336,5 +336,5 @@
336
336
  ]
337
337
  }
338
338
  },
339
- "version": "1.2.5"
339
+ "version": "1.2.6"
340
340
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@provartesting/provardx-cli",
3
3
  "description": "A plugin for the Salesforce CLI to orchestrate testing activities and report quality metrics to Provar Manager",
4
- "version": "1.2.5",
4
+ "version": "1.2.6",
5
5
  "license": "BSD-3-Clause",
6
6
  "plugins": [
7
7
  "@provartesting/provardx-plugins-automation",
@@ -19,6 +19,8 @@
19
19
  "jsonschema": "^1.4.1",
20
20
  "node-stream-zip": "^1.15.0",
21
21
  "@provartesting/provardx-plugins-utils": "1.0.0",
22
+ "@provartesting/provardx-plugins-automation": "1.0.0",
23
+ "@provartesting/provardx-plugins-manager": "1.0.3",
22
24
  "sync-request": "^6.1.0",
23
25
  "xml-js": "^1.6.11"
24
26
  },
@@ -42,8 +44,7 @@
42
44
  "files": [
43
45
  "/lib",
44
46
  "/messages",
45
- "/oclif.manifest.json",
46
- "/scripts"
47
+ "/oclif.manifest.json"
47
48
  ],
48
49
  "keywords": [
49
50
  "force",
@@ -61,6 +62,10 @@
61
62
  "devPlugins": [
62
63
  "@oclif/plugin-help"
63
64
  ],
65
+ "plugins": [
66
+ "@provartesting/provardx-plugins-automation",
67
+ "@provartesting/provardx-plugins-manager"
68
+ ],
64
69
  "topics": {
65
70
  "provar": {
66
71
  "description": "CLI commands to interact with Provar.",
@@ -98,7 +103,6 @@
98
103
  "docs": "sf-docs",
99
104
  "format": "wireit",
100
105
  "lint": "wireit",
101
- "postinstall": "node ./scripts/postInstall.js",
102
106
  "postpack": "shx rm -f oclif.manifest.json",
103
107
  "prepack": "sf-prepack",
104
108
  "test": "wireit",
@@ -121,8 +125,7 @@
121
125
  "files": [
122
126
  "src/**/*.ts",
123
127
  "**/tsconfig.json",
124
- "messages/**",
125
- "/scripts"
128
+ "messages/**"
126
129
  ],
127
130
  "output": [
128
131
  "lib/**",
@@ -1,13 +0,0 @@
1
- import { execSync } from 'node:child_process';
2
-
3
- const commandToInstallAutomationPlugin = 'echo y | sf plugins install @provartesting/provardx-plugins-automation';
4
-
5
- console.log('starting postInstall');
6
-
7
- execSync(commandToInstallAutomationPlugin, (error) => {
8
- if (error) {
9
- const errormessage = error.message ? error.message.toString('utf-8') : 'Unknown error';
10
- console.error(`Error: ${errormessage}`);
11
- return;
12
- }
13
- });