UNPKG

skeet

Version:

Full-stack TypeScript Serverless Framework

53 lines (41 loc) 609 B
export const gitignore = async (appName: string) => { const filePath = `${appName}/.gitignore` const body = ` # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies /apps/*/node_modules /node_modules /.pnp .pnp.js # testing /coverage # next.js /.next/ /out/ # production /build /dist # misc .DS_Store *.pem # debug npm-debug.log* yarn-debug.log* yarn-error.log* .pnpm-debug.log* # vercel .vercel # typescript *.tsbuildinfo # Gcloud key keyfile.json #firebase .firebase firebase-debug.log firestore.json ` return { filePath, body, } }