Skip to content

Commit 6fc85f7

Browse files
authored
fix(dependencies): update dependencies (#27)
1 parent 953b0d8 commit 6fc85f7

File tree

7 files changed

+11444
-5270
lines changed

7 files changed

+11444
-5270
lines changed

.huskyrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"hooks": {
3+
"pre-commit": "npm run lint",
4+
"commit-msg": "npm run commitmsg",
5+
"pre-push": "npm run test"
6+
}
7+
}

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
12.14.1

.travis.yml

+1-8
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,15 @@ language: node_js
22
cache:
33
directories:
44
- ~/.npm
5-
notifications:
6-
email: true
7-
node_js:
8-
- 'node'
9-
- 'lts/*'
10-
install: npm install
115
before_install:
12-
- npm install -g npm@5
136
- npm install -g greenkeeper-lockfile@1
147
jobs:
158
include:
169
- stage: test
1710
script:
11+
- npm run lint
1812
- npm run build
1913
- npm run build:prod
20-
- npm run lint
2114
- npm run test
2215
before_script: greenkeeper-lockfile-update
2316
after_script: greenkeeper-lockfile-upload

jest.config.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
collectCoverage: true,
3+
testEnvironment: 'node',
4+
testPathIgnorePatterns: [
5+
'<rootDir>/build/',
6+
'<rootDir>/node_modules/',
7+
],
8+
};

0 commit comments

Comments
 (0)