Skip to content

Commit 2186f18

Browse files
author
Ryan Kotzen
committed
updating gitignore to try make sure tests folder always exists
1 parent ec48bff commit 2186f18

3 files changed

Lines changed: 48 additions & 46 deletions

File tree

.gitignore

Lines changed: 46 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,46 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
6-
# Runtime data
7-
pids
8-
*.pid
9-
*.seed
10-
11-
# Directory for instrumented libs generated by jscoverage/JSCover
12-
lib-cov
13-
14-
# Coverage directory used by tools like istanbul
15-
coverage
16-
17-
# nyc test coverage
18-
.nyc_output
19-
20-
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
21-
.grunt
22-
23-
# node-waf configuration
24-
.lock-wscript
25-
26-
# Compiled binary addons (http://nodejs.org/api/addons.html)
27-
build/Release
28-
29-
# Dependency directories
30-
node_modules
31-
jspm_packages
32-
33-
# Optional npm cache directory
34-
.npm
35-
36-
# Optional REPL history
37-
.node_repl_history
38-
.idea
39-
report
40-
src/swagger/swagger.json
41-
yarn.lock
42-
43-
# VS Code Editor files
44-
.vscode
45-
*.orig
1+
# Logs
2+
logs/**/*.log
3+
logs/**/*.gz
4+
*.log
5+
npm-debug.log*
6+
7+
# Runtime data
8+
pids
9+
*.pid
10+
*.seed
11+
12+
# Directory for instrumented libs generated by jscoverage/JSCover
13+
lib-cov
14+
15+
# Coverage directory used by tools like istanbul
16+
coverage
17+
18+
# nyc test coverage
19+
.nyc_output
20+
21+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
22+
.grunt
23+
24+
# node-waf configuration
25+
.lock-wscript
26+
27+
# Compiled binary addons (http://nodejs.org/api/addons.html)
28+
build/Release
29+
30+
# Dependency directories
31+
node_modules
32+
jspm_packages
33+
34+
# Optional npm cache directory
35+
.npm
36+
37+
# Optional REPL history
38+
.node_repl_history
39+
.idea
40+
report
41+
src/swagger/swagger.json
42+
yarn.lock
43+
44+
# VS Code Editor files
45+
.vscode
46+
*.orig

config/default.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module.exports = function(options) {
4040
showLevel: true,
4141
zippedArchive: true,
4242
handleExceptions: true,
43-
datePattern: `./logs/${options.source}/ddd-HH`,
43+
datePattern: `./logs/${options.source.toLowerCase()}/ddd-HH`,
4444
prepend: true
4545
},
4646
loggly: {

logs/tests/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# makes sure CI passes

0 commit comments

Comments
 (0)