File tree Expand file tree Collapse file tree 2 files changed +6
-66
lines changed
Expand file tree Collapse file tree 2 files changed +6
-66
lines changed Original file line number Diff line number Diff line change 1- # Compiled source #
2- # ##################
3- * .com
4- * .class
5- * .dll
6- * .exe
7- * .o
8- * .so
9-
10- # Packages #
11- # ###########
12- # it's better to unpack these files and commit the raw source
13- # git has its own built in compression methods
14- * .7z
15- * .dmg
16- * .gz
17- * .iso
18- * .jar
19- * .rar
20- * .tar
21- * .zip
22-
23- # Logs and databases #
24- # #####################
25- * .log
26- * .sql
27- * .sqlite
28-
29- # OS generated files #
30- # #####################
31- .DS_Store *
32- ehthumbs.db
33- Icon ?
34- Thumbs.db
35-
36- # Node.js #
37- # ##########
38- lib-cov
39- * .seed
40- * .log
41- * .csv
42- * .dat
43- * .out
44- * .pid
45- * .gz
46-
47- pids
48- logs
49- results
50-
51- coverage
52- node_modules
1+ coverage /
2+ node_modules /
533npm-debug.log
54-
55- # Git #
56- # ######
57- * .orig
58- * .BASE. *
59- * .BACKUP. *
60- * .LOCAL. *
61- * .REMOTE. *
62-
63- # Components #
64- # #############
65-
66- /build
67- /components
4+ package-lock.json
Original file line number Diff line number Diff line change @@ -10,11 +10,14 @@ node_js:
1010 - " 5.12"
1111 - " 6.13"
1212 - " 7.10"
13+ - " 8.10"
1314sudo : false
1415cache :
1516 directories :
1617 - node_modules
1718before_install :
19+ # Skip updating shrinkwrap / lock
20+ - " npm config set shrinkwrap false"
1821 # Setup Node.js version-specific dependencies
1922 - " test $TRAVIS_NODE_VERSION != '0.8' || npm rm --save-dev istanbul"
2023 - " test $(echo $TRAVIS_NODE_VERSION | cut -d. -f1) -ge 4 || npm rm --save-dev $(grep -E '\" eslint\\ S*\" ' package.json | cut -d'\" ' -f2)"
You can’t perform that action at this time.
0 commit comments