Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,7 @@
"jquery": false,
"browser": true
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"sourceType": "module",
"babelOptions": {
"configFile": "./babel.config.cjs"
}
"sourceType": "module"
},
}
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.14.0
18.5.0
28 changes: 28 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"**/*.spec.js"
],
"check-coverage": true,
"watermarks": {
"lines": [
80,
95
],
"functions": [
80,
95
],
"branches": [
80,
95
],
"statements": [
80,
95
]
}
}
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ dist: trusty
addons:
language: node_js
node_js:
- "14"
- "16"
- "18"
before_script:
- npm run lint
Expand Down
3 changes: 0 additions & 3 deletions babel.config.cjs

This file was deleted.

18 changes: 0 additions & 18 deletions jest.config.cjs

This file was deleted.

Loading