Skip to content

Commit 1a53411

Browse files
Fix some whitespace issues
1 parent bb53a94 commit 1a53411

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

‎src/Microsoft.AspNetCore.SpaServices/Content/Node/prerenderer.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ module.exports.renderToString = function (callback){
77
callback('To use prerendering, you must install the \'aspnet-prerendering\' NPM package.');
88
return;
99
}
10-
10+
1111
returnaspNetPrerendering.renderToString.apply(this,arguments);
1212
};

‎src/Microsoft.AspNetCore.SpaServices/Content/Node/webpack-dev-middleware.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ module.exports.createWebpackDevServer = function (callback){
77
callback('To use webpack dev middleware, you must install the \'aspnet-webpack\' NPM package.');
88
return;
99
}
10-
10+
1111
returnaspNetWebpack.createWebpackDevServer.apply(this,arguments);
1212
};

‎src/Microsoft.AspNetCore.SpaServices/README.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Behind the scenes, it uses the [`Microsoft.AspNetCore.NodeServices`](https://git
1717
* To test this is installed and can be found, run `node -v` on a command line
1818
* Note: If you're deploying to an Azure web site, you don't need to do anything here - Node is already installed and available in the server environments
1919
*[.NET Core](https://dot.net), version 1.0 RC2 or later
20-
20+
2121
### Installation into existing projects
2222

2323
* Add `Microsoft.AspNetCore.SpaServices` to the dependencies list in your `project.json` file
@@ -28,10 +28,10 @@ Behind the scenes, it uses the [`Microsoft.AspNetCore.NodeServices`](https://git
2828
* For **webpack dev middleware**, install `aspnet-webpack`
2929
* For **webpack dev middleware with hot module replacement**, also install `webpack-hot-middleware`
3030
* For **webpack dev middleware with React hot module replacement**, also install `aspnet-webpack-react`
31-
31+
3232
For example, run `npm install --save aspnet-prerendering aspnet-webpack` to install `aspnet-prerendering` and `aspnet-webpack`.
3333

34-
34+
3535
### Creating entirely new projects
3636

3737
If you're starting from scratch, you might prefer to use the `aspnetcore-spa` Yeoman generator to get a ready-to-go starting point using your choice of client-side framework. This includes `Microsoft.AspNetCore.SpaServices` along with everything configured for webpack middleware, server-side prerendering, etc.

0 commit comments

Comments
(0)