Skip to content

Commit 205b135

Browse files
authored
Merge pull request #15 from hckrnews/feature/remove-babel
Remove babel
2 parents 1a77599 + 87eb0af commit 205b135

30 files changed

+2706
-13331
lines changed

.eslintrc

+1-5
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,7 @@
2222
"jquery": false,
2323
"browser": true
2424
},
25-
"parser": "@babel/eslint-parser",
2625
"parserOptions": {
27-
"sourceType": "module",
28-
"babelOptions": {
29-
"configFile": "./babel.config.cjs"
30-
}
26+
"sourceType": "module"
3127
},
3228
}

.github/workflows/nodejs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [14.x, 16.x, 18.x]
12+
node-version: [18.x]
1313

1414
steps:
1515
- uses: actions/checkout@v1

.nvmrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.14.0
1+
18.5.0

.nycrc

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"all": true,
3+
"include": [
4+
"src/**/*.js"
5+
],
6+
"exclude": [
7+
"**/*.spec.js"
8+
],
9+
"check-coverage": true,
10+
"watermarks": {
11+
"lines": [
12+
80,
13+
95
14+
],
15+
"functions": [
16+
80,
17+
95
18+
],
19+
"branches": [
20+
80,
21+
95
22+
],
23+
"statements": [
24+
80,
25+
95
26+
]
27+
}
28+
}

.travis.yml

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ dist: trusty
33
addons:
44
language: node_js
55
node_js:
6-
- "14"
7-
- "16"
86
- "18"
97
before_script:
108
- npm run lint

babel.config.cjs

-3
This file was deleted.

jest.config.cjs

-18
This file was deleted.

0 commit comments

Comments
 (0)