Skip to content

Commit

Permalink
Merge ed5d91f into d60eb05
Browse files Browse the repository at this point in the history
  • Loading branch information
crgwbr committed May 12, 2021
2 parents d60eb05 + ed5d91f commit e6b268b
Show file tree
Hide file tree
Showing 8 changed files with 2,661 additions and 2,331 deletions.
1 change: 1 addition & 0 deletions .editorconfig
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
.DS_Store
node_modules
coverage
.nyc_output
2 changes: 2 additions & 0 deletions .npmignore
Expand Up @@ -2,3 +2,5 @@
.travis.yml
Gruntfile.js
tests/**
coverage
.nyc_output
2 changes: 1 addition & 1 deletion .nvmrc
@@ -1 +1 @@
12.14.0
12.22.1
16 changes: 16 additions & 0 deletions .nycrc.json
@@ -0,0 +1,16 @@
{
"include": [
"src/**/*.js"
],
"extension": [
".js"
],
"reporter": [
"text-summary",
"html",
"lcov"
],
"instrument": true,
"sourceMap": true,
"all": true
}
7 changes: 3 additions & 4 deletions .travis.yml
Expand Up @@ -2,16 +2,15 @@ language: node_js
node_js:
- "node" # Latest node version
- "lts/*" # Latest LTS version
- "14"
- "12"
- "10"

before_install: npm i -g npm@6.13.4
before_install: npm i -g npm@6.14.12

script:
- node --version
- npm --version
- grunt standards
- commitlint-travis
- npm run standards
- npm test

# For code coverage:
Expand Down

0 comments on commit e6b268b

Please sign in to comment.