@mochabug/adaptkit 0.12.17 → 0.12.18

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 +2 -2
  2. package/package.json +1 -1
package/bin/index.js CHANGED
@@ -1904,7 +1904,7 @@ function printRpcSuccess(status, headers, trailers) {
1904
1904
  const statusCode = chalk.bold.white('Status Code: ') + chalk.greenBright.bold(status.code);
1905
1905
  const statusDetail = status.detail
1906
1906
  ? chalk.bold.white('Details: ') + chalk.greenBright(status.detail)
1907
- : chalk.gray('No Details Provided');
1907
+ : chalk.gray(' No Details Provided');
1908
1908
  const headerInfo = chalk.bold.white('Headers:\n') +
1909
1909
  (headers
1910
1910
  ? chalk.blue(JSON.stringify(headers, null, 2))
@@ -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.17"}')
2112
+ pkg: JSON.parse('{"name":"@mochabug/adaptkit","version":"0.12.18"}')
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.17",
3
+ "version": "0.12.18",
4
4
  "description": "A cmd to create, emulate and publish Mochabug Adapt plugins",
5
5
  "main": "bin/index.js",
6
6
  "type": "module",