@percy/cli-exec 1.0.0-beta.75 → 1.0.0-beta.76

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/dist/common.js CHANGED
@@ -8,6 +8,7 @@ const flags = [{
8
8
  name: 'port',
9
9
  description: 'Local CLI server port',
10
10
  env: 'PERCY_SERVER_PORT',
11
+ percyrc: 'port',
11
12
  type: 'number',
12
13
  parse: Number,
13
14
  default: 5338,
package/dist/exec.js CHANGED
@@ -87,8 +87,8 @@ const exec = (0, _cliCommand.default)('exec', {
87
87
  } // provide SDKs with useful env vars
88
88
 
89
89
 
90
- env.PERCY_SERVER_ADDRESS || (env.PERCY_SERVER_ADDRESS = percy === null || percy === void 0 ? void 0 : percy.address());
91
- env.PERCY_LOGLEVEL || (env.PERCY_LOGLEVEL = log.loglevel()); // run the provided command
90
+ env.PERCY_SERVER_ADDRESS = percy === null || percy === void 0 ? void 0 : percy.address();
91
+ env.PERCY_LOGLEVEL = log.loglevel(); // run the provided command
92
92
 
93
93
  log.info(`Running "${[command, ...args].join(' ')}"`);
94
94
  let [status, error] = yield* spawn(command, args); // stop percy if running (force stop if there is an error);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@percy/cli-exec",
3
- "version": "1.0.0-beta.75",
3
+ "version": "1.0.0-beta.76",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -30,10 +30,10 @@
30
30
  ]
31
31
  },
32
32
  "dependencies": {
33
- "@percy/cli-command": "1.0.0-beta.75",
34
- "@percy/core": "1.0.0-beta.75",
33
+ "@percy/cli-command": "1.0.0-beta.76",
34
+ "@percy/core": "1.0.0-beta.76",
35
35
  "cross-spawn": "^7.0.3",
36
36
  "which": "^2.0.2"
37
37
  },
38
- "gitHead": "3b778a9c0b72dcbf113910227f1a073a2714042a"
38
+ "gitHead": "445af68d8e270e2a35fc74e26422ed5d3c91d2ae"
39
39
  }