Tiny script for preparing web assets for deployment
1# Logs
2logs
3*.log
4npm-debug.log*
5yarn-debug.log*
6yarn-error.log*
7lerna-debug.log*
8
9# Diagnostic reports (https://nodejs.org/api/report.html)
10report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11
12# Runtime data
13pids
14*.pid
15*.seed
16*.pid.lock
17
18# Directory for instrumented libs generated by jscoverage/JSCover
19lib-cov
20
21# Coverage directory used by tools like istanbul
22coverage
23*.lcov
24
25# nyc test coverage
26.nyc_output
27
28# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29.grunt
30
31# Bower dependency directory (https://bower.io/)
32bower_components
33
34# node-waf configuration
35.lock-wscript
36
37# Compiled binary addons (https://nodejs.org/api/addons.html)
38build/Release
39
40# Dependency directories
41node_modules/
42jspm_packages/
43
44# TypeScript v1 declaration files
45typings/
46
47# TypeScript cache
48*.tsbuildinfo
49
50# Optional npm cache directory
51.npm
52
53# Optional eslint cache
54.eslintcache
55
56# Microbundle cache
57.rpt2_cache/
58.rts2_cache_cjs/
59.rts2_cache_es/
60.rts2_cache_umd/
61
62# Optional REPL history
63.node_repl_history
64
65# Output of 'npm pack'
66*.tgz
67
68# Yarn Integrity file
69.yarn-integrity
70
71# dotenv environment variables file
72.env
73.env.test
74
75# parcel-bundler cache (https://parceljs.org/)
76.cache
77
78# next.js build output
79.next
80
81# nuxt.js build output
82.nuxt
83
84# gatsby files
85.cache/
86public
87
88# vuepress build output
89.vuepress/dist
90
91# Serverless directories
92.serverless/
93
94# FuseBox cache
95.fusebox/
96
97# DynamoDB Local files
98.dynamodb/
99
100distribution/*
101bin/*