mksrvr 1.0.0 → 2.0.0

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/index.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  import fs from "fs";
4
4
  import path from "path";
@@ -112,7 +112,7 @@ console.log("📦 Installing dependencies...");
112
112
  try {
113
113
  console.log("📦 Installing dependencies...");
114
114
  execSync(
115
- "npm install express dotenv nodemon",
115
+ "npm install express dotenv nodemon cors",
116
116
  { cwd: projectPath, stdio: "inherit" }
117
117
  );
118
118
  } catch (err) {
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "mksrvr",
3
- "version": "1.0.0",
3
+ "version": "2.0.0",
4
4
  "type": "module",
5
5
  "bin": {
6
- "mksrvr": "bin/index.js"
6
+ "mksrvr": "./bin/index.js"
7
7
  }
8
8
  }
package/readme.md ADDED
File without changes