hytopia 0.1.22 → 0.1.24

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/scripts.js CHANGED
@@ -42,7 +42,7 @@ const path = require('path');
42
42
  } else {
43
43
  console.log('🔧 Initializing project');
44
44
  execSync('bun init --yes');
45
- execSync('bun add hytopia');
45
+ execSync('bun add hytopia@latest');
46
46
 
47
47
  const srcDir = path.join(__dirname, '..', 'boilerplate');
48
48
  fs.cpSync(srcDir, destDir, { recursive: true });
@@ -9,6 +9,6 @@
9
9
  "typescript": "^5.0.0"
10
10
  },
11
11
  "dependencies": {
12
- "hytopia": "^0.1.15"
12
+ "hytopia": "latest"
13
13
  }
14
14
  }
@@ -9,6 +9,6 @@
9
9
  "typescript": "^5.0.0"
10
10
  },
11
11
  "dependencies": {
12
- "hytopia": "^0.1.15"
12
+ "hytopia": "latest"
13
13
  }
14
14
  }
@@ -9,6 +9,6 @@
9
9
  "typescript": "^5.0.0"
10
10
  },
11
11
  "dependencies": {
12
- "hytopia": "^0.1.15"
12
+ "hytopia": "latest"
13
13
  }
14
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hytopia",
3
- "version": "0.1.22",
3
+ "version": "0.1.24",
4
4
  "description": "The HYTOPIA SDK makes it easy for developers to create multiplayer games on the HYTOPIA platform using JavaScript or TypeScript.",
5
5
  "main": "server.js",
6
6
  "bin": {