Skip to content

Commit

Permalink
Merge pull request #25 from jaebradley/fix-security-vulnerabilities
Browse files Browse the repository at this point in the history
Fix security vulnerabilities
  • Loading branch information
jaebradley authored May 17, 2018
2 parents 42c040e + 5ebe7bd commit 9903b50
Show file tree
Hide file tree
Showing 4 changed files with 2,368 additions and 427 deletions.
9 changes: 7 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

{
"presets": ["es2015", "es2016", "stage-0"]
"presets": [
"@babel/preset-env"
],
"ignore": [
"node_modules/**",
"*.test.js"
]
}
27 changes: 15 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,19 @@ notifications:
node_js:
- '8'
before_install:
- npm install -g npm@5
- npm install -g greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
script:
- npm run compile
- npm run lint
- npm run test
after_success:
- npm run semantic-release
- npm run codecov
branches:
except:
- /^v\d+\.\d+\.\d+$/
jobs:
include:
- stage: test
script:
- npm run compile
- npm run lint
- npm run test
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
after_success:
- npm run codecov
- stage: deploy
if: branch = master
script: npm run travis-deploy-once "npm run semantic-release"
Loading

0 comments on commit 9903b50

Please sign in to comment.