rn-ai 0.0.3 → 0.0.4

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 +2 -2
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -139,8 +139,8 @@ FAL_API_KEY="${fal_api_key}"
139
139
  spinner.start()
140
140
  await execa('git', ['clone', repoUrl, appName])
141
141
  await execa('rm', ['-rf', `${appName}/cli`])
142
- await execa('rm', ['-rf', `${appName}/rnaiheader.png`])
143
- await execa('rm', ['-rf', `${appName}/screenzzz.png`])
142
+ await execa('rm', [`${appName}/rnaiheader.png`])
143
+ await execa('rm', [`${appName}/screenzzz.png`])
144
144
 
145
145
  let packageJson = fs.readFileSync(`${appName}/server/package.json`, 'utf8')
146
146
  const packageObj = JSON.parse(packageJson)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rn-ai",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "Create a social app with a single command.",
5
5
  "type": "module",
6
6
  "bin": "cli.js",