1717# so no worries that they will slow down the parser
1818# target\debug\build\samfileparser-947b3b80d6e6026e\out\builtin_filtered.rs
1919
20+
21+ #
22+ # #######################################################
23+ #
24+ # ############## Minisite Tasks
25+ #
26+
2027# a task for minisite to copy the links.md file to the pages directory
2128# to bundle them into a minisite HTML File
2229# more infos about that here:
2330# https://shadowdara.wordpress.com/2026/06/30/minisite-a-site-in-only-one-html-file/
31+ #
32+ # seg _build_in_copy_links_md
2433_build_in_copy_links_md:
2534 MV .samengine/links.md pages/links.md
2635
@@ -29,6 +38,8 @@ _build_in_copy_links_md:
2938# for projects or games with npm
3039# More Infos can be found here: (scroll to the bottom of the article)
3140# https://shadowdara.wordpress.com/2026/06/30/minisite-a-site-in-only-one-html-file/
41+ #
42+ # seg _build_in_minisite_build_bun
3243_build_in_minisite_build_bun:
3344 SHELL bun x seg -l view
3445 TASK _build_in_copy_links_md
@@ -39,7 +50,38 @@ _build_in_minisite_build_bun:
3950# for projects or games with bun
4051# More Infos can be found here: (scroll to the bottom of the article)
4152# https://shadowdara.wordpress.com/2026/06/30/minisite-a-site-in-only-one-html-file/
53+ #
54+ # seg _build_in_minisite_build_npm
4255_build_in_minisite_build_npm:
4356 SHELL npx seg -l view
4457 TASK _build_in_copy_links_md
4558 SHELL npx sam-cli minisite
59+
60+
61+ # Ignore Godot File addon
62+ # Ignore autogenerated Files from the 3D Models!
63+ #
64+ # seg _build_in_gitignore_godot
65+ _build_in_gitignore_godot:
66+ APPEND .gitignore '# Ignore autogenerated Files image from the 3D Models'
67+ APPEND .gitignore models/*.png
68+ APPEND .gitignore models/*.png.import
69+ APPEND .gitignore models/*.jpg
70+ APPEND .gitignore models/*.jpg.import
71+ APPEND .gitignore models/*.jpeg
72+ APPEND .gitignore models/*.jpeg.import
73+ ECHO Ignored all images files form 3D Models by Godot
74+
75+
76+ # Ignore samengine File addon
77+ # Ignore autogenerated files from samengine
78+ #
79+ # seg _build_in_gitignore_samengine
80+ _build_in_gitignore_samengine:
81+ APPEND .gitignore '# Ignore autogenerated files from samengine'
82+ APPEND .gitignore .samengine/config.mjs
83+ APPEND .gitignore dist
84+ APPEND .gitignore .samengine/links.md
85+ APPEND .gitignore .samengine/links.txt
86+ APPEND .gitignore pages/links.md
87+ ECHO Ignore autogenerated files from samengine#
0 commit comments