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

Remove non-code files from release archive #25

Merged
merged 7 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from 5 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
11 changes: 11 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/.* export-ignore
/Makefile export-ignore
/*.dist export-ignore
/phpcs.xml export-ignore
/tests export-ignore
/example export-ignore
/extras export-ignore
/config export-ignore

# Test with:
# git archive --format=tar HEAD | tar t
2 changes: 1 addition & 1 deletion docs/StreamBuilder-Beginners-Guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ As an example of how to use StreamBuilder, we will implement an endpoint to retr

Let's also assume the returned array is a simple `string[]` which contains trending topics as strings.

We also have an example demo application in the `example/` folder which implements a lot of what we're going to discuss here -- so check that out!
We also have an example demo application in the `example/` folder which implements a lot of what we're going to discuss here -- so check that out! You must clone the Git repository to work with the example, as released archives do not include example code.
Copy link
Contributor

Choose a reason for hiding this comment

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

awesome. mind adding this somewhere prominent in the example/README.md file as well?

Copy link
Member Author

Choose a reason for hiding this comment

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

Added in both places 👍


### Integrating StreamBuilder with your codebase

Expand Down