apptuner 0.1.0 → 0.1.1

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/metro-server.cjs CHANGED
@@ -124,9 +124,9 @@ wss.on('connection', (ws) => {
124
124
 
125
125
  async function bundleProject(projectPath, entryPoint) {
126
126
  const absoluteProjectPath = path.resolve(projectPath);
127
- // metro-bundle.js lives alongside metro-server.cjs in the AppTuner installation.
127
+ // metro-bundle.cjs lives alongside metro-server.cjs in the AppTuner installation.
128
128
  // This works both in local dev (project root) and when installed globally via npm.
129
- const bundleScript = path.join(__dirname, 'metro-bundle.js');
129
+ const bundleScript = path.join(__dirname, 'metro-bundle.cjs');
130
130
 
131
131
  console.log(`📁 Project path: ${absoluteProjectPath}`);
132
132
  console.log(`📄 Entry point: ${entryPoint}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apptuner",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Hot reload React Native apps instantly - no Expo needed",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,7 +10,7 @@
10
10
  "dist/cli.js",
11
11
  "dist/cli.js.map",
12
12
  "metro-server.cjs",
13
- "metro-bundle.js",
13
+ "metro-bundle.cjs",
14
14
  "watcher-server.cjs"
15
15
  ],
16
16
  "keywords": [
File without changes