Skip to content

Commit d52933b

Browse files
committed
Further bug fixes inside the server
1 parent ac08ea1 commit d52933b

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

config/webpack/app-base.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,9 @@ module.exports = function configFactory(ops) {
107107
symlinks: false,
108108
},
109109
module: {
110+
noParse: [
111+
/node_modules[\\/]config/,
112+
],
110113
rules: [{
111114
/* Loads font resources from "src/assets/fonts" folder. */
112115
test: /\.(eot|otf|svg|ttf|woff2?)$/,

package-lock.json

Lines changed: 1 addition & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"url": "https://github.com/topcoder-platform/topcoder-react-utils/issues"
77
},
88
"dependencies": {
9-
"atob": "^2.0.3",
109
"babel-runtime": "^6.26.0",
1110
"body-parser": "^1.18.2",
1211
"config": "^1.30.0",
@@ -106,5 +105,5 @@
106105
"prepublishOnly": "npm run build",
107106
"test": "npm run lint && npm run jest"
108107
},
109-
"version": "0.2.5"
108+
"version": "0.2.6"
110109
}

src/server/server.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,6 @@ export default async function factory(webpackConfig, options) {
104104
/* Finally, the error response. */
105105
res.status(status).send(errorResponse);
106106
});
107+
108+
return server;
107109
}

0 commit comments

Comments
 (0)