rn-ai 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/cli.js +1 -1
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -162,7 +162,7 @@ FAL_API_KEY="${fal_api_key}"
162
162
 
163
163
  let packageJson2 = fs.readFileSync(`${appName}/app/package.json`, 'utf8')
164
164
  const packageObj2 = JSON.parse(packageJson2)
165
- packageObj.name = appName
165
+ packageObj2.name = appName
166
166
  packageJson2 = JSON.stringify(packageObj2, null, 2)
167
167
  fs.writeFileSync(`${appName}/app/package.json`, packageJson2)
168
168
  fs.writeFileSync(`${appName}/server/.env`, envs)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rn-ai",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Full stack mobile framework for building cross-platform mobile AI apps supporting image processing, real-time / streaming text and chat UIs, and image uploads with multiple service providers.",
5
5
  "type": "module",
6
6
  "bin": "cli.js",