Skip to content

Commit 5fed8a0

Browse files
Update the tech stack
1 parent 7b9715e commit 5fed8a0

15 files changed

+3286
-1181
lines changed

.eslintrc

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
extends: eslint-config-riot
2+
3+
parserOptions:
4+
ecmaVersion: 8
5+
sourceType: 'module'
6+
ecmaFeatures:
7+
experimentalObjectRestSpread: true
8+
9+
globals:
10+
sinon: true
11+
expect: true
12+
13+
rules:
14+
fp/no-mutating-methods: 0

.eslintrc.json

-30
This file was deleted.

.gitignore

+2-5
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,7 @@ pids
6868
*.pid
6969
*.seed
7070

71-
# node-waf configuration
72-
.lock-wscript
73-
7471
# generated files
7572
/dist
76-
/lib/compiler.js
77-
/lib/safe-regex.js
73+
.nyc_output/
74+
.reify-cache/

Makefile

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ ESLINT = ./node_modules/eslint/bin/eslint.js
33
MOCHA = ./node_modules/mocha/bin/_mocha
44
ROLLUP = ./node_modules/.bin/rollup
55
COVERALLS = ./node_modules/coveralls/bin/coveralls.js
6-
ISTANBUL = ./node_modules/istanbul/lib/cli.js
76

87
# folders
98
DIST = "./dist/"
@@ -20,7 +19,7 @@ clean:
2019

2120
test:
2221
@ make build
23-
@ $(ISTANBUL) cover $(MOCHA) -- test/*.specs.js
22+
@ npx nyc $(MOCHA) -r reify test/*.specs.js
2423

2524
lint:
2625
@ $(ESLINT) src test

0 commit comments

Comments
 (0)