Skip to content

Commit 595934c

Browse files
committedNov 2, 2021
Update Dependencies
1 parent ace3cab commit 595934c

22 files changed

+30570
-8779
lines changed
 

‎.codeclimate.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ engines:
77
- javascript
88
eslint:
99
enabled: true
10+
checks:
11+
comma-dangle:
12+
enabled: false
1013
config:
1114
config: test/fixtures/config/.eslintrc
1215
fixme:
@@ -18,5 +21,4 @@ exclude_paths:
1821
- test/
1922
- docs/
2023
- index.js
21-
- index.mjs
22-
- gulpfile.js
24+
- index.d.ts

‎.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/coverage
2+
/node_modules
3+
*.sublime-project
4+
*.sublime-workspace

‎.travis.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ branches:
77
language: node_js
88
node_js:
99
- stable
10-
- 12
11-
- 10
10+
- "--lts"
1211
env:
1312
global:
1413
- CC_TEST_REPORTER_ID=40b1513b98e60239cc6d5ee9b6a98ba1cf8438189dd2066c67a75fdfb8be5cff
@@ -20,7 +19,7 @@ before_script:
2019
- chmod +x ./cc-test-reporter
2120
- ./cc-test-reporter before-build
2221
after_script:
23-
- "[ $TRAVIS_NODE_VERSION = stable ] && nyc report --reporter=lcov && ./cc-test-reporter
22+
- "[ $TRAVIS_NODE_VERSION = stable ] && c8 report --reporter=lcov --reporter=text && ./cc-test-reporter
2423
after-build --debug -t lcov --exit-code $TRAVIS_TEST_RESULT || echo 'Coverage skipped'"
2524
notifications:
2625
slack:

‎ava.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const config = {
2+
files: ['test/*.js'],
3+
}
4+
5+
export default config

‎docs/assets/css/style.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.