Skip to content

Commit cf5b0cc

Browse files
committed
Merge branch 'release/v0.5.0'
2 parents bf5dd01 + 5823797 commit cf5b0cc

File tree

14 files changed

+19184
-948
lines changed

14 files changed

+19184
-948
lines changed

.codeclimate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
engines:
33
duplication:
44
enabled: true
5-
exclude_fingerprints:
6-
- 0e16666415e2499b8929a76107e1e170
75
config:
86
languages:
97
- javascript
@@ -19,4 +17,6 @@ ratings:
1917
exclude_paths:
2018
- test/
2119
- docs/
22-
- index*.js
20+
- index.js
21+
- index.mjs
22+
- gulpfile.js

.travis.yml

Lines changed: 21 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
1+
---
12
branches:
23
only:
34
- master
45
- develop
5-
- /^greenkeeper-.*$/
6+
- /^greenkeeper/.*$/
67
language: node_js
78
node_js:
89
- stable
9-
- 6
10-
- 5
11-
- 4
10+
- 9
11+
- 8
1212
sudo: false
13-
before_install:
14-
- npm i -g npm@latest
1513
notifications:
1614
webhooks:
1715
urls:
@@ -20,15 +18,21 @@ notifications:
2018
on_failure: change
2119
on_start: never
2220
env:
23-
- CXX=g++-4.8
24-
addons:
25-
apt:
26-
sources:
27-
- ubuntu-toolchain-r-test
28-
packages:
29-
- g++-4.8
30-
code_climate:
31-
repo_token: f017a295c85532d945c74fe17b7f45c516ff72ef478548a99b165927aaa321d7
21+
global:
22+
- CC_TEST_REPORTER_ID=f017a295c85532d945c74fe17b7f45c516ff72ef478548a99b165927aaa321d7
23+
- secure: k+PXexJeDTne3XBzuDa59S3V7lvZ1hXoivoD3AkSM30WXRFVhqvreCkpcrKcwLWD6DTJA7DYy2eQE26V4Q2NVIPSHo4cMhVKX4v6a4JITN8UCWKqa9oaDE4OuHWymVXcuS1FRDUJQEy59oRb1zM37f+3bfOEoEupgg4IDBErxiaWyLZV3d8f5mVNkZC2nhvXdfla/KNeJxCIBk8bzR9yCPgra8frwzGb0ZQazZfyy31D3JkHYNeJfIp/4ncXLiracUxzLLAevW0sb4RI3oP3KX8UKs//uT0ipjQnSqPQFM1gewDUPelk6XvI/glw6G1+nttqcyxj+LO6mlpJGXtcyNP2qziU86n2UYsxaocEtvcK4U7lKyo5tnrJr/WunZZ1k0H8YHASkHdKsef5m+lhlrKvk9ebMZER96bE1+p7gNSo9ghGNS+JSelVqs9hqNMFAAdiT8Y3Q5li5Yg81BNbLOXTYwFlXt1OKPrC2Ie3kKw/kbcYIhn9bofmsCHI2naULquISoEW94cqycpZzPfRmoWXOVqXM+jyWdQ/w1tEFuthYIiYJG1YIoptuW2ZIR6kIt8bLe6ZKCotkIfUY8fnENIq/VuNhIZWzHt5rtnqeP0XiH2aPGFXmAVGylVbUZLifQa8mS6CQiR9CTD7bOy5/odFtKrqGD1IN/QxpaLoa1I=
24+
before_install:
25+
- '[[ $(node -v) =~ ^v10.*$ ]] || npm install -g npm@latest'
26+
- npm install -g greenkeeper-lockfile
27+
install: npm install
28+
before_script:
29+
- greenkeeper-lockfile-update
30+
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
31+
- chmod +x ./cc-test-reporter
32+
- ./cc-test-reporter before-build
3233
after_script:
33-
- "[ $TRAVIS_NODE_VERSION = stable ] && nyc report --reporter=text-lcov | codeclimate-test-reporter"
34-
34+
- greenkeeper-lockfile-upload
35+
- "[ $TRAVIS_NODE_VERSION = stable ]
36+
&& nyc report --reporter=lcov
37+
&& ./cc-test-reporter after-build --debug -t lcov --exit-code $TRAVIS_TEST_RESULT
38+
|| echo 'Coverage skipped'"

0 commit comments

Comments
 (0)