A CLI for scaffolding ATProto web applications

chore: changeset

besaid.zone 2c63dc4f c2e567d8

verified
+10 -1
+5
.changeset/modern-geckos-yawn.md
··· 1 + --- 2 + "@nulfrost/create-atproto-app": patch 3 + --- 4 + 5 + add generated files to gitignore
+5 -1
src/commands/init.ts
··· 174 174 copy(sourceTemplateFiles, destinationTemplateFiles); 175 175 } 176 176 177 - appendFileSync(join(root, ".gitignore"), '\n# atproto specific ignore\n./src/__generated__', 'utf-8') 177 + appendFileSync( 178 + join(root, ".gitignore"), 179 + "\n# atproto specific ignore\n./src/__generated__", 180 + "utf-8", 181 + ); 178 182 179 183 try { 180 184 s.stop("Project created!");