Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(boilerplate): clean up mentions of index.js #2762

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion boilerplate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ ignite-project
│   ├── model
│   ├── navigator
│   └── screen
├── index.js
├── ios
│   ├── IgniteProject
│   ├── IgniteProject-tvOS
Expand Down
2 changes: 1 addition & 1 deletion boilerplate/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
"module": "commonjs"
}
},
"include": ["index.js", "App.tsx", "app", "types", "plugins", "app.config.ts"],
"include": ["App.tsx", "app", "types", "plugins", "app.config.ts"],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we've updated this since and this change doesn't apply anymore. Updating the file tree int he README does seem like a good idea, though, I think that's pretty out of date. @andrewsixsixsix would you like to update this PR? If not we can follow up on that.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@lindboe Feel free to close it if the changes I made are not relevant

"exclude": ["node_modules", "test/**/*"]
}