Skip to content

Commit 0c72d45

Browse files
committedApr 8, 2021
old website replaced with gatsby version
1 parent e820cd2 commit 0c72d45

File tree

184 files changed

+30804
-31331
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+30804
-31331
lines changed
 

‎.gitignore

+65-17
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,71 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
27

3-
# dependencies
4-
/node_modules
5-
/.pnp
6-
.pnp.js
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# nyc test coverage
21+
.nyc_output
22+
23+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24+
.grunt
25+
26+
# Bower dependency directory (https://bower.io/)
27+
bower_components
28+
29+
# node-waf configuration
30+
.lock-wscript
31+
32+
# Compiled binary addons (http://nodejs.org/api/addons.html)
33+
build/Release
734

8-
# testing
9-
/coverage
35+
# Dependency directories
36+
node_modules/
37+
jspm_packages/
1038

11-
# production
12-
/build
39+
# Typescript v1 declaration files
40+
typings/
1341

14-
# misc
42+
# Optional npm cache directory
43+
.npm
44+
45+
# Optional eslint cache
46+
.eslintcache
47+
48+
# Optional REPL history
49+
.node_repl_history
50+
51+
# Output of 'npm pack'
52+
*.tgz
53+
54+
# dotenv environment variable files
55+
.env*
56+
57+
# gatsby files
58+
.cache/
59+
60+
# Mac files
1561
.DS_Store
16-
.env.local
17-
.env.development.local
18-
.env.test.local
19-
.env.production.local
2062

21-
npm-debug.log*
22-
yarn-debug.log*
23-
yarn-error.log*
63+
# Yarn
64+
yarn-error.log
65+
.pnp/
66+
.pnp.js
67+
# Yarn Integrity file
68+
.yarn-integrity
69+
70+
# === UNCOMMENT THIS ===
71+
# public

‎framework/.nvmrc ‎.nvmrc

File renamed without changes.

0 commit comments

Comments
 (0)
Please sign in to comment.