Skip to content

Commit

Permalink
chore: update typescript, npm and travis configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
lbenie committed Jun 2, 2018
1 parent 2fa1cc0 commit aff7bab
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,13 @@ notifications:
jobs:
include:
- stage: test
script: yarn test
if: type IN (push, pull_request)
- stage: deploy
if: tag IS present
deploy:
skip_cleanup: true
script: yarn build
provider: npm
email: lucien.benie@gmail.com
api_key:
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
},
"license": "MIT",
"scripts": {
"build": "gulp typescript",
"test": "jest --config jest.config.js --colors && stryker run",
"test:dev": "cross-env BABEL_ENV=test jest --config jest.config.js --watch",
"changelog": "conventional-changelog -i CHANGELOG.md -s",
Expand Down
6 changes: 5 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@
"dom.iterable",
"scripthost",
],
"baseUrl": "."
"baseUrl": ".",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true
},
"include": [
"lib/**/*.ts",
Expand Down

0 comments on commit aff7bab

Please sign in to comment.