tangled
alpha
login
or
join now
besaid.zone
/
create-atproto-app
2
fork
atom
A CLI for scaffolding ATProto web applications
2
fork
atom
overview
issues
pulls
pipelines
chore: changeset
besaid.zone
3 weeks ago
2c63dc4f
c2e567d8
verified
This commit was signed with the committer's
known signature
.
besaid.zone
SSH Key Fingerprint:
SHA256:Q4dc5PTI8DNTxJbH2bWsDeY6BXzfq0ce1XSA4H5Y3iI=
+10
-1
2 changed files
expand all
collapse all
unified
split
.changeset
modern-geckos-yawn.md
src
commands
init.ts
+5
.changeset/modern-geckos-yawn.md
···
1
1
+
---
2
2
+
"@nulfrost/create-atproto-app": patch
3
3
+
---
4
4
+
5
5
+
add generated files to gitignore
+5
-1
src/commands/init.ts
···
174
174
copy(sourceTemplateFiles, destinationTemplateFiles);
175
175
}
176
176
177
177
-
appendFileSync(join(root, ".gitignore"), '\n# atproto specific ignore\n./src/__generated__', 'utf-8')
177
177
+
appendFileSync(
178
178
+
join(root, ".gitignore"),
179
179
+
"\n# atproto specific ignore\n./src/__generated__",
180
180
+
"utf-8",
181
181
+
);
178
182
179
183
try {
180
184
s.stop("Project created!");