primate 0.15.5 → 0.15.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "primate",
3
- "version": "0.15.5",
3
+ "version": "0.15.6",
4
4
  "description": "Expressive, minimal and extensible framework for JavaScript",
5
5
  "homepage": "https://primatejs.com",
6
6
  "bugs": "https://github.com/primatejs/primate/issues",
package/src/config.js CHANGED
@@ -99,6 +99,7 @@ export default async (filename = "primate.config.js") => {
99
99
  },
100
100
  };
101
101
  print(colors.blue(colors.bold(name)), colors.blue(version), "");
102
+ print(colors.gray(`at http://${config.http.host}:${config.http.port}`), "\n");
102
103
  const {modules} = config;
103
104
  // modules may load other modules
104
105
  const loads = await Promise.all(modules
package/src/serve.js CHANGED
@@ -136,6 +136,4 @@ export default env => {
136
136
 
137
137
  return handlers({original: request, pathname: pathname + search, body});
138
138
  }, http);
139
-
140
- print(colors.gray(`at http://${http.host}:${http.port}`), "\n");
141
139
  };