Skip to content
This repository was archived by the owner on Apr 13, 2023. It is now read-only.

Commit 2bf22a9

Browse files
authored
Merge pull request #31 from SpringRoll/bugfix/node-10-installations
Bugfix/node 10 installations
2 parents 444d072 + f643652 commit 2bf22a9

File tree

4 files changed

+3394
-1992
lines changed

4 files changed

+3394
-1992
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:8
1+
FROM node:10
22

33
COPY package.json /package.json
44
COPY npm-shrinkwrap.json /npm-shrinkwrap.json

app/routes/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports = function(app)
1515
res.locals.version = app.get('version');
1616
res.locals.marked = function(str)
1717
{
18-
return marky(str).html();
18+
return marky(str);
1919
};
2020
res.locals.isActive = function(url, undefined)
2121
{

0 commit comments

Comments
 (0)