Skip to content

Commit 946285c

Browse files
committed
Add hardcopy of .gitignore to template generator
1 parent 1b02c84 commit 946285c

File tree

1 file changed

+95
-0
lines changed

1 file changed

+95
-0
lines changed

templates/component-mapper/.gitignore

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# common
2+
3+
# Logs
4+
logs
5+
*.log
6+
npm-debug.log*
7+
yarn-debug.log*
8+
yarn-error.log*
9+
10+
# Runtime data
11+
pids
12+
*.pid
13+
*.seed
14+
*.pid.lock
15+
.vscode
16+
17+
# Directory for instrumented libs generated by jscoverage/JSCover
18+
lib-cov
19+
20+
# Coverage directory used by tools like istanbul
21+
coverage
22+
23+
# nyc test coverage
24+
.nyc_output
25+
26+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
27+
.grunt
28+
29+
# Bower dependency directory (https://bower.io/)
30+
bower_components
31+
32+
# node-waf configuration
33+
.lock-wscript
34+
35+
# Compiled binary addons (https://nodejs.org/api/addons.html)
36+
build/Release
37+
38+
# Dependency directories
39+
node_modules/
40+
jspm_packages/
41+
42+
# TypeScript v1 declaration files
43+
typings/
44+
45+
# Optional npm cache directory
46+
.npm
47+
48+
# Optional eslint cache
49+
.eslintcache
50+
51+
# Optional REPL history
52+
.node_repl_history
53+
54+
# Output of 'npm pack'
55+
*.tgz
56+
57+
# Yarn files
58+
.yarn-integrity
59+
yarn.lock
60+
61+
# dotenv environment variables file
62+
.env
63+
64+
# next.js build output
65+
.next
66+
67+
# build output
68+
dist
69+
vendor
70+
71+
/*
72+
73+
!src
74+
!src/
75+
!demo/
76+
!demo
77+
!src/*
78+
!demo/*
79+
!config
80+
!.npmignore
81+
!.gitignore
82+
!babel.config.js
83+
!generate-packages.js
84+
!LICENSE
85+
!package.json
86+
!README.md
87+
!tsconfig.json
88+
!generate-typings.js
89+
!rollup.config.js
90+
!generate-componen-examples.js
91+
!firebae.json
92+
!firebaseFunctions.js
93+
!scripts/
94+
95+
.DS_STORE

0 commit comments

Comments
 (0)