Skip to content

Commit

Permalink
#1 - Modify project name minimally
Browse files Browse the repository at this point in the history
  • Loading branch information
L committed Nov 11, 2021
1 parent c0e5303 commit 2f3cac8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ local.properties
#
node_modules/
npm-debug.log
yarn-debug.log
yarn-error.log

# BUCK
Expand All @@ -58,3 +59,9 @@ buck-out/

# CocoaPods
/ios/Pods/

# Etc
*.tsbuildinfo
.history
.jest
.next
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "myprojectname",
"name": "zero",
"version": "0.0.1",
"private": true,
"workspaces": {
Expand Down
4 changes: 2 additions & 2 deletions packages/mobile/app.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "myprojectname",
"displayName": "myprojectname"
"name": "zero",
"displayName": "Zero"
}
4 changes: 2 additions & 2 deletions packages/web-cra/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { AppRegistry } from 'react-native'

import { App } from 'components/src/App'

AppRegistry.registerComponent('myprojectname', () => App)
AppRegistry.runApplication('myprojectname', {
AppRegistry.registerComponent('zero', () => App)
AppRegistry.runApplication('zero', {
rootTag: document.getElementById('root'),
})

0 comments on commit 2f3cac8

Please sign in to comment.