File tree Expand file tree Collapse file tree 2 files changed +38
-8
lines changed Expand file tree Collapse file tree 2 files changed +38
-8
lines changed Original file line number Diff line number Diff line change 7
7
sqlite3.o
8
8
sqlite-amalgamation-3110000.zip
9
9
10
- # Created by https://www.gitignore.io/api/d,node,bower
10
+ # Created by https://www.gitignore.io/api/d,node,vagrant
11
11
12
12
# ## D ###
13
13
# Compiled Object files
@@ -30,6 +30,10 @@ sqlite-amalgamation-3110000.zip
30
30
.dub
31
31
docs.json
32
32
__dummy.html
33
+ docs /
34
+
35
+ # Code coverage
36
+ * .lst
33
37
34
38
35
39
# ## Node ###
@@ -42,13 +46,17 @@ npm-debug.log*
42
46
pids
43
47
* .pid
44
48
* .seed
49
+ * .pid.lock
45
50
46
51
# Directory for instrumented libs generated by jscoverage/JSCover
47
52
lib-cov
48
53
49
54
# Coverage directory used by tools like istanbul
50
55
coverage
51
56
57
+ # nyc test coverage
58
+ .nyc_output
59
+
52
60
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
53
61
.grunt
54
62
@@ -58,19 +66,26 @@ coverage
58
66
# Compiled binary addons (http://nodejs.org/api/addons.html)
59
67
build /Release
60
68
61
- # Dependency directory
62
- # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
69
+ # Dependency directories
63
70
node_modules
71
+ jspm_packages
64
72
65
73
# Optional npm cache directory
66
74
.npm
67
75
76
+ # Optional eslint cache
77
+ .eslintcache
78
+
68
79
# Optional REPL history
69
80
.node_repl_history
70
81
82
+ # Output of 'npm pack'
83
+ * .tgz
84
+
85
+ # Yarn Integrity file
86
+ .yarn-integrity
87
+
88
+
71
89
72
- # ## Bower ###
73
- bower_components
74
- .bower-cache
75
- .bower-registry
76
- .bower-tmp
90
+ # ## Vagrant ###
91
+ .vagrant /
Original file line number Diff line number Diff line change
1
+ # -*- mode: ruby -*-
2
+ # vi: set ft=ruby :
3
+
4
+ Vagrant . configure ( "2" ) do |config |
5
+ config . vm . box = "ubuntu/xenial64"
6
+
7
+ config . vm . provider :virtualbox do |vb |
8
+ vb . customize [ "modifyvm" , :id , "--memory" , "4096" ]
9
+ end
10
+
11
+ config . vm . provision "shell" , inline : <<-SHELL
12
+ apt-get update -qq
13
+ apt-get install -qq npm nodejs-legacy unzip gcc libevent-dev libssl-dev --no-install-recommends
14
+ SHELL
15
+ end
You can’t perform that action at this time.
0 commit comments