maxserver 0.1.1 → 0.1.2

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/bin/init.js CHANGED
@@ -15,7 +15,7 @@ function main() {
15
15
  }
16
16
 
17
17
  try {
18
- console.log(`🚀 Setting up "${projectName}"...`);
18
+ console.log(`🚀 Setting up "${projectName}"`);
19
19
  fs.cpSync(templateDir, targetDir, { recursive: true });
20
20
 
21
21
  fixDotfiles(targetDir);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "maxserver",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Node server setup based fastify",
5
5
  "author": "Max Matinpalo",
6
6
  "type": "module",
package/src/index.js CHANGED
@@ -37,7 +37,7 @@ export default async function maxserver(config = {}) {
37
37
  } = config;
38
38
 
39
39
  const maxserverConfig = {
40
- port, secret, mongodb, docs, cors, env, openapiInfo, src,
40
+ port, secret, mongodb, docs, cors, env, openapiInfo, routesDir,
41
41
  static: isStatic,
42
42
  public: isPublic
43
43
  };