-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy path.gitignore
39 lines (32 loc) · 972 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
dist
/node_modules/*
# the following files are used directly
# in the production application
# and should therefore be checked in
# .gitignore wildcard is tricky
# and require explitily re-including
# the entire path to the file
!node_modules/async
node_modules/async/*
!node_modules/async/dist
node_modules/async/dist/*
!node_modules/async/dist/async.js
!node_modules/jquery
node_modules/jquery/*
!node_modules/jquery/dist
node_modules/jquery/dist/*
!node_modules/jquery/dist/jquery.js
!node_modules/materialize-css
node_modules/materialize-css/*
!node_modules/materialize-css/dist
node_modules/materialize-css/dist/*
!node_modules/materialize-css/dist/css
node_modules/materialize-css/dist/css/*
!node_modules/materialize-css/dist/css/materialize.css
!node_modules/materialize-css/dist/js
node_modules/materialize-css/dist/js/*
!node_modules/materialize-css/dist/js/materialize.js
!node_modules/moment
node_modules/moment/*
!node_modules/moment/moment.js
build