@mbtest/mountebank 2.9.3-beta.9316 → 2.9.3-beta.9339

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
@@ -6,7 +6,7 @@ Work is being done to migrate and upgrade all CI/CD integrations from personal a
6
6
 
7
7
  Pull requests are welcome, but don't expect anything to be merged until CI/CD infrastucture is up and running.
8
8
 
9
- Many thanks goes to [Brandon Byars](https://github.com/bbyars) for all the effort building mountebank in the first place and maintaining the project for more than a decade and finally being helpfull and collaborative during this transition phase.
9
+ Many thanks goes to [Brandon Byars](https://github.com/bbyars) for all the effort building mountebank in the first place, for maintaining the project for more than a decade, and finally, for being helpful and collaborative during this transition phase.
10
10
 
11
11
  # Welcome, friend
12
12
  Build status: [![CircleCI](https://dl.circleci.com/status-badge/img/gh/mountebank-testing/mountebank/tree/master.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/mountebank-testing/mountebank/tree/master)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mbtest/mountebank",
3
- "version": "2.9.3-beta.9316",
3
+ "version": "2.9.3-beta.9339",
4
4
  "author": "Brandon Byars <brandon.byars@gmail.com>",
5
5
  "description": "Over the wire test doubles",
6
6
  "homepage": "http://www.mbtest.dev",
@@ -53,7 +53,6 @@
53
53
  "https-proxy-agent": "7.0.2",
54
54
  "jsonpath-plus": "10.3.0",
55
55
  "mailparser": "3.7.4",
56
- "@mbtest/mountebank-formatters": "0.0.2",
57
56
  "nodemailer": "6.10.1",
58
57
  "prom-client": "15.1.0",
59
58
  "proper-lockfile": "4.1.2",
@@ -64,6 +63,9 @@
64
63
  "xpath": "0.0.34",
65
64
  "yargs": "17.7.2"
66
65
  },
66
+ "optionalDependencies": {
67
+ "@mbtest/mountebank-formatters": "0.0.2"
68
+ },
67
69
  "engines": {
68
70
  "node": ">=18"
69
71
  },
@@ -90,4 +90,9 @@ formatter for configuration files as well as how to define a custom formatter.</
90
90
  </div>
91
91
  </section>
92
92
 
93
+ <p>If you are using a custom formatter (or simply don't need one at all), you may wish to
94
+ avoid installing the default EJS-based formatter. This can be done when installing Mountebank:</p>
95
+
96
+ <pre><code>npm install -g --omit=optional @mbtest/mountebank</code></pre>
97
+
93
98
  <%- include('../_footer') -%>
@@ -9,7 +9,7 @@ description = 'A getting started guide for using mountebank'
9
9
 
10
10
  <p><b>Install:</b></p>
11
11
 
12
- <pre><code>npm install -g mountebank</code></pre>
12
+ <pre><code>npm install -g @mbtest/mountebank</code></pre>
13
13
 
14
14
  <p><b>Run:</b></p>
15
15
 
@@ -17,7 +17,7 @@ description = 'A getting started guide for using mountebank'
17
17
 
18
18
  <p><b>Alternative install methods:</b></p>
19
19
 
20
- <p>You can avoid a global install with <code>npm install mountebank</code>, in which
20
+ <p>You can avoid a global install with <code>npm install @mbtest/mountebank</code>, in which
21
21
  case you can run mountebank using the <code>npx mb</code> command.</p>
22
22
 
23
23
  <p>Alternatively, you can download the Docker image and run:</p>