Skip to content

Commit

Permalink
Merge a7fad70 into d470006
Browse files Browse the repository at this point in the history
  • Loading branch information
crgwbr committed May 11, 2021
2 parents d470006 + a7fad70 commit d0c3cd2
Show file tree
Hide file tree
Showing 7 changed files with 4,712 additions and 1,448 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
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
}
10 changes: 4 additions & 6 deletions .travis.yml
Expand Up @@ -2,15 +2,13 @@ language: node_js
node_js:
- "node" # Latest node version
- "lts/*" # Latest LTS version
- "10"
- "8"
- "8.10"
- "6"
- "14"
- "12"

before_install: if [[ `npm -v` != 6* ]]; then npm i -g npm@6.4.1; fi
before_install: npm i -g npm@6.14.12

script:
- grunt standards
- npm run standards
- npm test

# For code coverage:
Expand Down
5 changes: 5 additions & 0 deletions commitlint.config.js
@@ -0,0 +1,5 @@
'use strict';

module.exports = {
extends: [ '@silvermine/standardization/commitlint.js' ],
};

0 comments on commit d0c3cd2

Please sign in to comment.