Skip to content

Commit

Permalink
Removing npm install hack; prepping bug fix version release
Browse files Browse the repository at this point in the history
  • Loading branch information
bbyars committed Apr 18, 2016
1 parent 66041d0 commit 8bcb161
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 17 deletions.
1 change: 0 additions & 1 deletion build
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,5 @@ fi

scripts/fixDependencies
npm install
npm install jsonpath-plus

MB_PORT=3535 MB_VERSION=$MB_VERSION node_modules/grunt-cli/bin/grunt "$@"
3 changes: 0 additions & 3 deletions build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ if "%MB_SKIP_x86%"=="true" (
call node scripts/fixDependencies
call npm install

REM I can't figure out why this isn't installed with the previous command on node < 5.0
call npm install jsonpath-plus

set MB_PORT=3535
node node_modules\grunt-cli\bin\grunt %*

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "mountebank",
"preferGlobal": true,
"version": "1.6.0",
"version": "1.5.1",
"author": "Brandon Byars <[email protected]>",
"contributors": [
"Jason Reid <[email protected]>",
Expand Down
3 changes: 2 additions & 1 deletion releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@
{ "version": "v1.4.1", "date": "2015-10-23" },
{ "version": "v1.4.2", "date": "2015-11-07" },
{ "version": "v1.4.3", "date": "2016-01-16" },
{ "version": "v1.5.0", "date": "2016-04-11" }
{ "version": "v1.5.0", "date": "2016-04-11" },
{ "version": "v1.5.1", "date": "2016-04-18" }
]
19 changes: 8 additions & 11 deletions src/views/releases/v1.6.0.ejs → src/views/releases/v1.5.1.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,24 @@
<p class='info-icon'>Be sure to keep up with the latest releases by subscribing to the
<a href='http://mbtest.org/feed'>ATOM feed</a>.</p>

<h2>New Features</h2>
<ul class='bullet-list'>
<li></li>
</ul>

<h2>Bug Fixes</h2>
<ul>
<li></li>
<ul class='bullet-list'>
<li>Fix npm install issues due to misconfigured shrinkwrap</li>
<li>Allow access to global <code>process</code> object in response injection
(it was being shadowed by a local mountebank function of the same name)</li>
</ul>

<p>Many thanks to the following kind folk for help with this release:</p>

<ul class='bullet-list'>
<li></li>
<li>Burkhard Reffeling</li>
<li>Zen Chen</li>
<li>Natalia Pedan</li>
</ul>

<h2>Install</h2>

<pre><code>
npm install -g mountebank@<%= releaseVersion %>
</code></pre>
<pre><code>npm install -g mountebank@<%= releaseVersion %></code></pre>

<p>or:</p>

Expand Down

0 comments on commit 8bcb161

Please sign in to comment.