Skip to content

Commit 1c7af17

Browse files
committed
Adding nyc to gitignore
1 parent fbfdc68 commit 1c7af17

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.nyc_output
2+
13
# Logs
24
logs
35
*.log

.travis.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
before_install:
2+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
3+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install memcached ; fi
4+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew services start memcached ; fi
5+
16
env:
27
global:
38
- CXX=g++-4.8
@@ -19,16 +24,16 @@ plugins:
1924
node_js:
2025
- '10'
2126

22-
matrix:
23-
include:
24-
- node_js: "10"
25-
os: osx
26-
- node_js: "10"
27-
os: linux
27+
matrix:
28+
include:
29+
- node_js: "10"
30+
os: osx
31+
- node_js: "10"
32+
os: linux
2833

2934
script:
3035
- npm run test
31-
- curl -o package.sh -L https://raw.githubusercontent.com/deepstreamIO/deepstream.io/connector-submodules/scripts/connector/publish-connector.sh
36+
- curl -o package.sh -L https://raw.githubusercontent.com/deepstreamIO/deepstream.io/connector-submodules/scripts/connector/package-connector.sh
3237
- chmod 555 package.sh
3338
- ./package.sh
3439

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ test_script:
2020
- node --version
2121
- npm --version
2222
- npm test
23-
- curl -o package.sh -L https://raw.githubusercontent.com/deepstreamIO/deepstream.io/connector-submodules/scripts/connector/publish-connector.sh
23+
- curl -o package.sh -L https://raw.githubusercontent.com/deepstreamIO/deepstream.io/connector-submodules/scripts/connector/package-connector.sh
2424
- bash package.sh
2525
- For /d %%d in ( build\** ) do MOVE %%d %cd%
2626

0 commit comments

Comments
 (0)