Skip to content

Commit

Permalink
Added conclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
ijlee2 committed Oct 30, 2023
1 parent fe07e7f commit 5e6a949
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions tutorials/blueprint-for-v2-addon/00-introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ We will partially recreate `blueprint-for-v2-addon`, a codemod that helps [CLARK
1. [Create static files](./02-create-static-files.md)
1. [Define options](./03-define-options.md)
1. [Create dynamic files](./04-create-dynamic-files.md)
1. [Conclusion](./05-conclusion.md)
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ workspace-root
<div align="center">
<div>
Next: Conclusion
Next: <a href="./05-conclusion.md">Conclusion</a>
</div>
<div>
Previous: <a href="./03-define-options.md">Define options</a>
Expand Down
7 changes: 7 additions & 0 deletions tutorials/blueprint-for-v2-addon/05-conclusion.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Conclusion

You have learned how blueprints help you create or update files in a project. The blueprint files can be static (the content is always the same) or dynamic (the content differs, depending on the circumstances).

You might also understand better why `codemodOptions` and `options` exist, as well as which related files to update, should you decide to provide users more codemod options.

For brevity, our `blueprint-for-v2-addon` created only 1 file in the addon and the test app. To familiarize yourself with delimiters (in particular, with evaluate and interpolate), I encourage you to extend the project and add more blueprint files. You can also explore how to write integration tests for the `create-files-from-blueprints` step.

0 comments on commit 5e6a949

Please sign in to comment.