Skip to content

Commit

Permalink
fix cli
Browse files Browse the repository at this point in the history
  • Loading branch information
jeemercado committed Jul 18, 2024
1 parent 15602c2 commit 34976b3
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 167 deletions.
34 changes: 17 additions & 17 deletions lib/index.cjs

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nx-react-native-cli",
"version": "1.0.11",
"version": "1.0.12",
"description": "A react native starter (with NX) cli script",
"type": "module",
"files": [
Expand Down
3 changes: 2 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,14 @@ program
copyFile(`${workspaceDirectory}/.prettierignore`, '.prettierignore');
copyFile(`${workspaceDirectory}/.eslintrc.json`, '.eslintrc.json');
copyFile(`${workspaceDirectory}/.eslintrc.json`, '.eslintrc.json');
copyFile(`${workspaceDirectory}/.gitignore`, '.gitignore');
copyFile(`${workspaceDirectory}/.ignorefile`, '.gitignore');
copyFile(`${workspaceDirectory}/.ruby-version`, '.ruby-version');
copyFile(`${workspaceDirectory}/.nvmrc`, '.nvmrc');
copyFile(`${workspaceDirectory}/check-env.sh`, `check-env.sh`);
copyFile(`${workspaceDirectory}/clean-generated-outputs.sh`, `clean-generated-outputs.sh`);
removeDir(`${workspaceDirectory}/apps/mobile/src`);
copyDir(`${workspaceDirectory}/apps`, `apps`);
copyDir(`${workspaceDirectory}/ignorefile`, `apps/mobile/.gitignore`);
executeCommand(
workspaceDirectory,
`keytool -genkey -keystore ${workspaceDirectory}/apps/mobile/android/app/dev.keystore -keyalg RSA -keysize 2048 -validity 10000 -alias dev -dname "cn=Unknown, ou=Unknown, o=Unknown, c=Unknown" -storepass development -keypass development`,
Expand Down
File renamed without changes.
146 changes: 0 additions & 146 deletions templates/apps/mobile/.gitignore

This file was deleted.

0 comments on commit 34976b3

Please sign in to comment.