@agent8/deploy 1.0.3 → 1.0.5

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.
Files changed (2) hide show
  1. package/bin/agent8.js +1 -1
  2. package/package.json +1 -1
package/bin/agent8.js CHANGED
@@ -60,7 +60,7 @@ if (fs.existsSync(serverFilePath)) {
60
60
  // Validate server.js syntax before deployment
61
61
  try {
62
62
  const serverContent = fs.readFileSync(serverFilePath, "utf8");
63
- eval(`(function() { ${serverContent}; new Server(); })`)();
63
+ eval(`(function() { ${serverContent}; })`)();
64
64
 
65
65
  const hash = calculateFileHash(serverFilePath);
66
66
  newHashes["server.js"] = hash;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent8/deploy",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "A CLI tool for running agent8 commands",
5
5
  "main": "index.js",
6
6
  "bin": {