@mochabug/adaptkit 0.12.16 → 0.12.17

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/bin/index.js +5 -5
  2. package/package.json +1 -1
package/bin/index.js CHANGED
@@ -1906,12 +1906,12 @@ function printRpcSuccess(status, headers, trailers) {
1906
1906
  ? chalk.bold.white('Details: ') + chalk.greenBright(status.detail)
1907
1907
  : chalk.gray('No Details Provided');
1908
1908
  const headerInfo = chalk.bold.white('Headers:\n') +
1909
- (headers && headers.meta
1910
- ? chalk.blue(JSON.stringify(headers.meta, null, 2))
1909
+ (headers
1910
+ ? chalk.blue(JSON.stringify(headers, null, 2))
1911
1911
  : chalk.gray(' No Metadata'));
1912
1912
  const trailerInfo = chalk.bold.white('Trailers:\n') +
1913
- (trailers && trailers.meta
1914
- ? chalk.blue(JSON.stringify(trailers.meta, null, 2))
1913
+ (trailers
1914
+ ? chalk.blue(JSON.stringify(trailers, null, 2))
1915
1915
  : chalk.gray(' No Trailers'));
1916
1916
  console.log(line);
1917
1917
  console.log(title);
@@ -2109,7 +2109,7 @@ function handleVersion(bump, cmd) {
2109
2109
  }
2110
2110
  async function main() {
2111
2111
  const notifier = updateNotifier({
2112
- pkg: JSON.parse('{"name":"@mochabug/adaptkit","version":"0.12.16"}')
2112
+ pkg: JSON.parse('{"name":"@mochabug/adaptkit","version":"0.12.17"}')
2113
2113
  });
2114
2114
  notifier.notify({ isGlobal: true, defer: false });
2115
2115
  program
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mochabug/adaptkit",
3
- "version": "0.12.16",
3
+ "version": "0.12.17",
4
4
  "description": "A cmd to create, emulate and publish Mochabug Adapt plugins",
5
5
  "main": "bin/index.js",
6
6
  "type": "module",