-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
20 lines (17 loc) · 735 Bytes
/
.gitignore
File metadata and controls
20 lines (17 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Files inside ".jsenv" directory are dynamically generated by jsenv.
# It's a filesystem cache of dynamically generated files.
# -> do not track transient files generated dynamically.
.jsenv/
# Files inside "coverage" directory are generated by "npm run test:coverage"
# These files are generated dynamically and meant to be viewed locally
# -> do not track coverage files (feel free to track them if you want).
.coverage/
# Files inside "node_modules" directory are generated by "npm install"
# These files are fetched dynamically by npm and very big
# -> do not track node module files
node_modules/
.DS_STORE
docs/**/dist/
# secrets.json is a file where you can put secret data
# that must not be published by git
/secrets.json