rn-ai 0.2.7 → 0.2.8

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
@@ -150,7 +150,7 @@ FAL_API_KEY="${fal_api_key}"
150
150
  await execa('git', ['clone', repoUrl, appName])
151
151
  try {
152
152
  await execa('rm', ['-r', `${appName}/cli`])
153
- // await execa('rm', ['-rf', `${appName}/.git`])
153
+ await execa('rm', ['-rf', `${appName}/.git`])
154
154
  } catch (err) {}
155
155
 
156
156
  let packageJson = fs.readFileSync(`${appName}/server/package.json`, 'utf8')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rn-ai",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
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",